go/test/ken
Ainar Garipov 0efbd10157 all: fix typos
Use the following (suboptimal) script to obtain a list of possible
typos:

  #!/usr/bin/env sh

  set -x

  git ls-files |\
    grep -e '\.\(c\|cc\|go\)$' |\
    xargs -n 1\
    awk\
    '/\/\// { gsub(/.*\/\//, ""); print; } /\/\*/, /\*\// { gsub(/.*\/\*/, ""); gsub(/\*\/.*/, ""); }' |\
    hunspell -d en_US -l |\
    grep '^[[:upper:]]\{0,1\}[[:lower:]]\{1,\}$' |\
    grep -v -e '^.\{1,4\}$' -e '^.\{16,\}$' |\
    sort -f |\
    uniq -c |\
    awk '$1 == 1 { print $2; }'

Then, go through the results manually and fix the most obvious typos in
the non-vendored code.

Change-Id: I3cb5830a176850e1a0584b8a40b47bde7b260eae
Reviewed-on: https://go-review.googlesource.com/c/go/+/193848
Reviewed-by: Robert Griesemer <gri@golang.org>
2019-09-08 17:28:20 +00:00
..
array.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
chan.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
chan1.go go/test/chan1.go: fix typo 2012-02-25 08:47:04 +11:00
complit.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
convert.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
cplx0.go test: remove rundircmpout and cmpout actions 2018-05-31 17:36:45 +00:00
cplx0.out test: split golden.out into expected output per test 2012-01-18 16:12:24 -08:00
cplx1.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
cplx2.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
cplx3.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
cplx4.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
cplx5.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
divconst.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
divmod.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
embed.go all: fix spelling mistakes 2016-04-03 17:03:15 +00:00
for.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
interbasic.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
interfun.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
intervar.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
label.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
litfun.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
mfunc.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
modconst.go all: fix typos 2019-09-08 17:28:20 +00:00
ptrfun.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
ptrvar.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
range.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
rob1.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
rob2.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
robfor.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
robfunc.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
shift.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
simparray.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
simpbool.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
simpconv.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
simpfun.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
simpswitch.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
simpvar.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
slicearray.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
sliceslice.go test: document ken/*.go 2012-02-24 16:24:24 +11:00
string.go test: remove rundircmpout and cmpout actions 2018-05-31 17:36:45 +00:00
string.out test: split golden.out into expected output per test 2012-01-18 16:12:24 -08:00
strvar.go test: document ken/*.go 2012-02-24 16:24:24 +11:00