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"
// language lala
// lala language
// language
// language language
// check Language
// and check langAuge
func langaugeMisspell() {
var language, langaugeAnd string
log.Printf("it's because of them: %s, %s", language, langaugeAnd)
}