]> Cypherpunks repositories - gostls13.git/commitdiff
fix typo in comment. s/put/Put/
authorRob Pike <r@golang.org>
Fri, 23 Jan 2009 23:57:52 +0000 (15:57 -0800)
committerRob Pike <r@golang.org>
Fri, 23 Jan 2009 23:57:52 +0000 (15:57 -0800)
R=ken
OCL=23419
CL=23419

src/lib/fmt/format.go

index e230ec99cd08cc62f5610d4b703ee0483e03384c..c983c2debfcaa55ede014c4659a290b32fb4cfba 100644 (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
 */