fix typo in comment. s/put/Put/

R=ken
OCL=23419
CL=23419
This commit is contained in:
Rob Pike 2009-01-23 15:57:52 -08:00
parent 9a7332fb5b
commit d8819569eb
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ import (
f := fmt.New();
print f.Fmt_d(1234).Fmt_s("\n").Str(); // create string, print it
f.Fmt_d(-1234).Fmt_s("\n").put(); // print string
f.Fmt_d(-1234).Fmt_s("\n").Put(); // print string
f.Fmt_ud(1<<63).Putnl(); // print string with automatic newline
*/