Denis Isaev 3d78f64b60 fix #522: run misspell in text mode
Treat Go source files as plain text files by misspell: it allows detecting
issues in strings, variable names, etc. Also, it's the default mode of
a standalone misspell tool.

Also, implement richer and more stable auto-fix of misspell issues:
now it can fix multiple issues in one line.
2019-06-09 20:14:19 +03:00

18 lines
282 B
Go

//args: -Emisspell
package p
import "log"
// langauge lala
// lala langauge
// langauge
// langauge langauge
// check Langauge
// and check langAuge
func langaugeMisspell() {
var langauge, langaugeAnd string
log.Printf("it's becouse of them: %s, %s", langauge, langaugeAnd)
}