chore(fs): linter complaints

This commit is contained in:
Jakob Borg
2025-06-06 13:45:44 +02:00
parent 700bb75016
commit 10d20c4800
15 changed files with 44 additions and 38 deletions
+1 -1
View File
@@ -192,7 +192,7 @@ func CommonPrefix(first, second string) string {
}
common := make([]string, 0, count)
for i := 0; i < count; i++ {
for i := range count {
if firstParts[i] != secondParts[i] {
break
}