Merge pull request #3621 from tanjunchen/modify-document-repeat-word

modify-document-duplicate-word
This commit is contained in:
Michael Crosby 2019-09-05 11:21:01 -04:00 committed by GitHub
commit eaa24d6e40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ func TestGenerateSpec(t *testing.T) {
}
} else {
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"
}
// 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
// and use a little less memory.