Skip to content

Commit

Permalink
Update indentation style
Browse files Browse the repository at this point in the history
  • Loading branch information
propensive committed Nov 11, 2024
1 parent f542176 commit 0b9df46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/comparison.scala
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ object Contrastable extends Derivation[[ValueType] =>> ValueType is Contrastable
given Text is Contrastable = (left, right) => compareSeq[Char](left.chars, right.chars, left, right)

def compareSeq[ValueType: Contrastable: Similarity]
(left: IndexedSeq[ValueType], right: IndexedSeq[ValueType], leftDebug: Text, rightDebug: Text)
(left: IndexedSeq[ValueType], right: IndexedSeq[ValueType], leftDebug: Text, rightDebug: Text)
: Semblance =
if left == right then Semblance.Identical(leftDebug) else
val comparison = IArray.from:
Expand Down

0 comments on commit 0b9df46

Please sign in to comment.