Fix typos

This commit is contained in:
Andreas Deininger
2024-08-11 21:38:15 +02:00
parent 33c670dd7a
commit 4401265e36
3 changed files with 3 additions and 3 deletions

View File

@@ -8,6 +8,6 @@ import "strings"
// toComparableFilename returns a filename suitable for equality checks. On Windows, it returns the
// uppercase version of the string. On all other systems, it returns the unmodified filename.
func toComparableFilename(path string) string {
// apparently NTFS internally uppercases filenames for comparision
// apparently NTFS internally uppercases filenames for comparison
return strings.ToUpper(path)
}