aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2017-01-30 02:46:55 +0800
committerGitHub <noreply@github.com>2017-01-30 02:46:55 +0800
commitb8823a8b343cfca94c3ab8f2fc0a7da3d0780bdb (patch)
treed1b192d0591536322ccacb61f0ca34d599f9ead7
parentc46c41eae35e3083090e5806932fc5076e53e37c (diff)
parent658bcbcbdc71dacb047fef108e62abbb7883529e (diff)
downloadgo-tangerine-b8823a8b343cfca94c3ab8f2fc0a7da3d0780bdb.tar
go-tangerine-b8823a8b343cfca94c3ab8f2fc0a7da3d0780bdb.tar.gz
go-tangerine-b8823a8b343cfca94c3ab8f2fc0a7da3d0780bdb.tar.bz2
go-tangerine-b8823a8b343cfca94c3ab8f2fc0a7da3d0780bdb.tar.lz
go-tangerine-b8823a8b343cfca94c3ab8f2fc0a7da3d0780bdb.tar.xz
go-tangerine-b8823a8b343cfca94c3ab8f2fc0a7da3d0780bdb.tar.zst
go-tangerine-b8823a8b343cfca94c3ab8f2fc0a7da3d0780bdb.zip
Merge pull request #3623 from kaneshin/patch-1
build: Fix tiny typo
-rw-r--r--build/ci.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/ci.go b/build/ci.go
index 319691e8a..51540f9b6 100644
--- a/build/ci.go
+++ b/build/ci.go
@@ -309,7 +309,7 @@ func spellcheck(packages []string) {
// Ensure the spellchecker is available
build.MustRun(goTool("get", "github.com/client9/misspell/cmd/misspell"))
- // Windows chokes on long argument lists, check packages individualy
+ // Windows chokes on long argument lists, check packages individually
for _, pkg := range packages {
// The spell checker doesn't work on packages, gather all .go files for it
out, err := goTool("list", "-f", "{{.Dir}}{{range .GoFiles}}\n{{.}}{{end}}{{range .CgoFiles}}\n{{.}}{{end}}{{range .TestGoFiles}}\n{{.}}{{end}}", pkg).CombinedOutput()