- fixed a typo

SVN=120165
This commit is contained in:
Robert Griesemer 2008-05-27 17:09:40 -07:00
parent d4aa5c0b45
commit 896c8f4ecc

View file

@ -1237,7 +1237,7 @@ initial values.
For instance,
type S struct { a int; b float }
new(int32)
new(S)
allocates storage for an S, initializes it (a=0, b=0.0), and returns a
value of type *S pointing to that storage.