misspell.csv: add new misspellings; also check in result of 'make spellfix'.

This commit is contained in:
Dan Kegel
2024-08-14 13:52:51 -07:00
committed by Ron Evans
parent 194396d715
commit 5368dd22c5
12 changed files with 27 additions and 15 deletions
+1 -1
View File
@@ -180,7 +180,7 @@ func Load(config *compileopts.Config, inputPkg string, typeChecker types.Config)
if len(fields) >= 2 {
// There is some file/line/column information.
if n, err := strconv.Atoi(fields[len(fields)-2]); err == nil {
// Format: filename.go:line:colum
// Format: filename.go:line:column
pos.Filename = strings.Join(fields[:len(fields)-2], ":")
pos.Line = n
pos.Column, _ = strconv.Atoi(fields[len(fields)-1])