]> Cypherpunks repositories - gostls13.git/commitdiff
[release-branch.go1] encoding/gob: fix doc typo
authorBrad Fitzpatrick <bradfitz@golang.org>
Wed, 13 Jun 2012 20:24:58 +0000 (16:24 -0400)
committerBrad Fitzpatrick <bradfitz@golang.org>
Wed, 13 Jun 2012 20:24:58 +0000 (16:24 -0400)
««« backport d34766b79c5e
encoding/gob: fix doc typo

R=golang-dev, dsymonds
CC=golang-dev
https://golang.org/cl/6300078

»»»

src/pkg/encoding/gob/doc.go

index 96885f8ded4a2b8c0df4adb5147130a9f146ba51..821d9a3fe8ef1a9890836942758c0c5b675fb3cb 100644 (file)
@@ -116,7 +116,7 @@ uninterpreted bytes of the value.
 All other slices and arrays are sent as an unsigned count followed by that many
 elements using the standard gob encoding for their type, recursively.
 
-Maps are sent as an unsigned count followed by that man key, element
+Maps are sent as an unsigned count followed by that many key, element
 pairs. Empty but non-nil maps are sent, so if the sender has allocated
 a map, the receiver will allocate a map even no elements are
 transmitted.