Skip to content

Commit 3a53dbf

Browse files
chore: fix double spaces
1 parent aea06a4 commit 3a53dbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/app/hashers/FactHasher.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ class FactHasher(private val serverRepo: Repo = Repo(),
127127

128128
// Indentation.
129129
fsIndentation[email]!![FactCodes.INDENTATION_SPACES] +=
130-
lines.count { it.isNotBlank() && it.startsWith(" ") &&
130+
lines.count { it.isNotBlank() && it.startsWith(" ") &&
131131
!it.contains("\t")}
132132
fsIndentation[email]!![FactCodes.INDENTATION_TABS] +=
133133
lines.count { it.startsWith("\t") }

0 commit comments

Comments
 (0)