aboutsummaryrefslogtreecommitdiff
path: root/src/encoding/gob
diff options
context:
space:
mode:
authorTormod Erevik Lea <tormodlea@gmail.com>2015-10-06 16:57:06 +0200
committerBrad Fitzpatrick <bradfitz@golang.org>2015-10-06 15:13:43 +0000
commit01ecd41688d0e2441cc8cb755f514807ef966821 (patch)
treed516db12e8f590eb53082f82879f62a4f800584e /src/encoding/gob
parent3e6334e2e059505aa3ebd16185b03f7a9cc88d23 (diff)
downloadgo-01ecd41688d0e2441cc8cb755f514807ef966821.tar.gz
go-01ecd41688d0e2441cc8cb755f514807ef966821.zip
encoding/gob: fix typo in documentation
Change-Id: I6a882d9f0bc20b7a8bf73765e055d9344f3f401f Reviewed-on: https://go-review.googlesource.com/15422 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/encoding/gob')
-rw-r--r--src/encoding/gob/type.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/encoding/gob/type.go b/src/encoding/gob/type.go
index a49b71a867..cf5cec0703 100644
--- a/src/encoding/gob/type.go
+++ b/src/encoding/gob/type.go
@@ -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.