mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
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>
This commit is contained in:
parent
83a78eb911
commit
0efbd10157
63 changed files with 78 additions and 78 deletions
|
|
@ -3783,7 +3783,7 @@ func (c *ctxOnlyConn) ExecContext(ctx context.Context, q string, args []driver.N
|
|||
// TestQueryExecContextOnly ensures drivers only need to implement QueryContext
|
||||
// and ExecContext methods.
|
||||
func TestQueryExecContextOnly(t *testing.T) {
|
||||
// Ensure connection does not implment non-context interfaces.
|
||||
// Ensure connection does not implement non-context interfaces.
|
||||
var connType driver.Conn = &ctxOnlyConn{}
|
||||
if _, ok := connType.(driver.Execer); ok {
|
||||
t.Fatalf("%T must not implement driver.Execer", connType)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue