Skip to content

Commit 2b0e29f

Browse files
jbamptonBryan C. Mills
authored and
Bryan C. Mills
committed
docs: fix case of GitHub
Change `Github` to `GitHub` Change-Id: I514e8dc9a19182fcf9fcf5bc1b5fbff253c1a947 GitHub-Last-Rev: 7124c70 GitHub-Pull-Request: golang#44260 Reviewed-on: https://go-review.googlesource.com/c/go/+/291950 Reviewed-by: Bryan C. Mills <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]> Run-TryBot: Bryan C. Mills <[email protected]> TryBot-Result: Go Bot <[email protected]>
1 parent b62da08 commit 2b0e29f

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

misc/chrome/gophertool/popup.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<a href="#" url="https://golang.org/pkg/">pkg</a> id/name:</small>
1616
<form style='margin: 0' id='navform'><nobr><input id="inputbox" size=10 tabindex=1 /><input type="submit" value="go" /></nobr></form>
1717
<small>Also: <a href="#" url="https://build.golang.org">buildbots</a>
18-
<a href="#" url="https://github.com/golang/go">Github</a>
18+
<a href="#" url="https://github.com/golang/go">GitHub</a>
1919
</small>
2020
</body>
2121
</html>

src/cmd/go/internal/vcs/vcs.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1176,7 +1176,7 @@ func expand(match map[string]string, s string) string {
11761176
// and import paths referring to a fully-qualified importPath
11771177
// containing a VCS type (foo.com/repo.git/dir)
11781178
var vcsPaths = []*vcsPath{
1179-
// Github
1179+
// GitHub
11801180
{
11811181
pathPrefix: "github.com",
11821182
regexp: lazyregexp.New(`^(?P<root>github\.com/[A-Za-z0-9_.\-]+/[A-Za-z0-9_.\-]+)(/[A-Za-z0-9_.\-]+)*$`),

src/crypto/md5/md5_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ func TestBlockGeneric(t *testing.T) {
157157
// Tests for unmarshaling hashes that have hashed a large amount of data
158158
// The initial hash generation is omitted from the test, because it takes a long time.
159159
// The test contains some already-generated states, and their expected sums
160-
// Tests a problem that is outlined in Github issue #29541
160+
// Tests a problem that is outlined in GitHub issue #29541
161161
// The problem is triggered when an amount of data has been hashed for which
162162
// the data length has a 1 in the 32nd bit. When casted to int, this changes
163163
// the sign of the value, and causes the modulus operation to return a

src/crypto/sha1/sha1_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ func TestBlockGeneric(t *testing.T) {
156156
// Tests for unmarshaling hashes that have hashed a large amount of data
157157
// The initial hash generation is omitted from the test, because it takes a long time.
158158
// The test contains some already-generated states, and their expected sums
159-
// Tests a problem that is outlined in Github issue #29543
159+
// Tests a problem that is outlined in GitHub issue #29543
160160
// The problem is triggered when an amount of data has been hashed for which
161161
// the data length has a 1 in the 32nd bit. When casted to int, this changes
162162
// the sign of the value, and causes the modulus operation to return a

src/crypto/sha256/sha256_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ func TestBlockGeneric(t *testing.T) {
229229
// Tests for unmarshaling hashes that have hashed a large amount of data
230230
// The initial hash generation is omitted from the test, because it takes a long time.
231231
// The test contains some already-generated states, and their expected sums
232-
// Tests a problem that is outlined in Github issue #29517
232+
// Tests a problem that is outlined in GitHub issue #29517
233233
// The problem is triggered when an amount of data has been hashed for which
234234
// the data length has a 1 in the 32nd bit. When casted to int, this changes
235235
// the sign of the value, and causes the modulus operation to return a

src/crypto/sha512/sha512_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -835,7 +835,7 @@ func TestBlockGeneric(t *testing.T) {
835835
// Tests for unmarshaling hashes that have hashed a large amount of data
836836
// The initial hash generation is omitted from the test, because it takes a long time.
837837
// The test contains some already-generated states, and their expected sums
838-
// Tests a problem that is outlined in Github issue #29541
838+
// Tests a problem that is outlined in GitHub issue #29541
839839
// The problem is triggered when an amount of data has been hashed for which
840840
// the data length has a 1 in the 32nd bit. When casted to int, this changes
841841
// the sign of the value, and causes the modulus operation to return a

0 commit comments

Comments
 (0)