aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@golang.org>2012-06-13 16:24:58 -0400
committerBrad Fitzpatrick <bradfitz@golang.org>2012-06-13 16:24:58 -0400
commit687e047b14b8cfc34c066b7a9548abd105bf8130 (patch)
tree2cc0f9bcea62328164b11d4beddd84d31e21d30c
parent2117541627d3de86070d60fb9a0cbec96076fb0b (diff)
downloadgo-687e047b14b8cfc34c066b7a9548abd105bf8130.tar.gz
go-687e047b14b8cfc34c066b7a9548abd105bf8130.zip
[release-branch.go1] encoding/gob: fix doc typo
««« backport d34766b79c5e encoding/gob: fix doc typo R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/6300078 »»»
-rw-r--r--src/pkg/encoding/gob/doc.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/encoding/gob/doc.go b/src/pkg/encoding/gob/doc.go
index 96885f8ded..821d9a3fe8 100644
--- a/src/pkg/encoding/gob/doc.go
+++ b/src/pkg/encoding/gob/doc.go
@@ -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.