1
0
mirror of https://github.com/golang/go synced 2024-11-21 20:34:40 -07:00

encoding/gob: fix comment

Fixes #4100.

R=adg, r, dave
CC=golang-dev
https://golang.org/cl/6535055
This commit is contained in:
Robert Griesemer 2012-09-19 10:11:24 -07:00
parent 2e7aaeddc4
commit 93195e1f31

View File

@ -118,7 +118,7 @@ elements using the standard gob encoding for their type, recursively.
Maps are sent as an unsigned count followed by that many 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 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 a map, the receiver will allocate a map even if no elements are
transmitted. transmitted.
Structs are sent as a sequence of (field number, field value) pairs. The field Structs are sent as a sequence of (field number, field value) pairs. The field