1
0
mirror of https://github.com/mgechev/revive.git synced 2025-12-01 22:30:16 +02:00

refactor: fix typos in comments and struct names (#1304)

This commit is contained in:
Oleksandr Redko
2025-04-10 08:47:55 +03:00
committed by GitHub
parent 8221f8516d
commit 1cb97fdcfc
5 changed files with 7 additions and 7 deletions

View File

@@ -117,7 +117,7 @@ func (ff *FileFilter) prepareRegexp() error {
return nil
}
// it's whole file mask, just escape dots and normilze separators
// it's whole file mask, just escape dots and normalize separators
fillRx := src
fillRx = strings.ReplaceAll(fillRx, "\\", "/")
fillRx = strings.ReplaceAll(fillRx, ".", `\.`)