]> Cypherpunks repositories - gostls13.git/commitdiff
encoding/gob: fix typo in documentation
authorTormod Erevik Lea <tormodlea@gmail.com>
Tue, 6 Oct 2015 14:57:06 +0000 (16:57 +0200)
committerBrad Fitzpatrick <bradfitz@golang.org>
Tue, 6 Oct 2015 15:13:43 +0000 (15:13 +0000)
Change-Id: I6a882d9f0bc20b7a8bf73765e055d9344f3f401f
Reviewed-on: https://go-review.googlesource.com/15422
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
src/encoding/gob/type.go

index a49b71a8676786c67aa38dbae07c8ddbdbd86ec6..cf5cec0703bcc0f1cbeed1664e4bea00bdf6cb0a 100644 (file)
@@ -787,7 +787,7 @@ func mustGetTypeInfo(rt reflect.Type) *typeInfo {
 // contain things such as private fields, channels, and functions,
 // which are not usually transmissible in gob streams.
 //
-// Note: Since gobs can be stored permanently, It is good design
+// Note: Since gobs can be stored permanently, it is good design
 // to guarantee the encoding used by a GobEncoder is stable as the
 // software evolves.  For instance, it might make sense for GobEncode
 // to include a version number in the encoding.