modify-document-duplicate-word

Signed-off-by: chentanjun <2799194073@qq.com>
This commit is contained in:
chentanjun 2019-09-04 21:43:00 +08:00
parent cd79e0edfe
commit 8788af7f8d
2 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ func TestGenerateSpec(t *testing.T) {
} }
} else { } else {
if s.Windows == nil { if s.Windows == nil {
t.Fatal("Windows section of spec not filled on on Windows platform") t.Fatal("Windows section of spec not filled in on Windows platform")
} }
} }

View File

@ -28,7 +28,7 @@ func isLinuxOS(os string) bool {
return os == "linux" return os == "linux"
} }
// These function are generated from from https://golang.org/src/go/build/syslist.go. // These function are generated from https://golang.org/src/go/build/syslist.go.
// //
// We use switch statements because they are slightly faster than map lookups // We use switch statements because they are slightly faster than map lookups
// and use a little less memory. // and use a little less memory.