From: Robert Hencke Date: Sat, 26 Mar 2011 03:45:21 +0000 (-0700) Subject: gob: trivial cleanup X-Git-Tag: weekly.2011-03-28~18 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a4df525a79d3db1ede99a885724943715ea2abc4;p=gostls13.git gob: trivial cleanup R=golang-dev, r CC=golang-dev https://golang.org/cl/4279074 --- diff --git a/src/pkg/gob/type.go b/src/pkg/gob/type.go index fc620f5c7c..305d41980a 100644 --- a/src/pkg/gob/type.go +++ b/src/pkg/gob/type.go @@ -407,7 +407,7 @@ func (s *structType) string() string { return s.safeString(make(map[typeId]bool) func newStructType(name string) *structType { s := &structType{CommonType{Name: name}, nil} // For historical reasons we set the id here rather than init. - // Se the comment in newTypeObject for details. + // See the comment in newTypeObject for details. setTypeId(s) return s } @@ -545,7 +545,7 @@ func getBaseType(name string, rt reflect.Type) (gobType, os.Error) { // getType returns the Gob type describing the given reflect.Type. // Should be called only when handling GobEncoders/Decoders, // which may be pointers. All other types are handled through the -// base type, never a pointer. +// base type, never a pointer. // typeLock must be held. func getType(name string, ut *userTypeInfo, rt reflect.Type) (gobType, os.Error) { typ, present := types[rt] @@ -561,7 +561,7 @@ func getType(name string, ut *userTypeInfo, rt reflect.Type) (gobType, os.Error) func checkId(want, got typeId) { if want != got { - fmt.Fprintf(os.Stderr, "checkId: %d should be %d\n", int(want), int(got)) + fmt.Fprintf(os.Stderr, "checkId: %d should be %d\n", int(got), int(want)) panic("bootstrap type wrong id: " + got.name() + " " + got.string() + " not " + want.string()) } }