From: Rob Pike Date: Fri, 23 Jan 2009 23:57:52 +0000 (-0800) Subject: fix typo in comment. s/put/Put/ X-Git-Tag: weekly.2009-11-06~2304 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=d8819569eb4f1148d959d747db55f8fe2d7aa05c;p=gostls13.git fix typo in comment. s/put/Put/ R=ken OCL=23419 CL=23419 --- diff --git a/src/lib/fmt/format.go b/src/lib/fmt/format.go index e230ec99cd..c983c2debf 100644 --- a/src/lib/fmt/format.go +++ b/src/lib/fmt/format.go @@ -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 */