From d8819569eb4f1148d959d747db55f8fe2d7aa05c Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Fri, 23 Jan 2009 15:57:52 -0800 Subject: [PATCH] fix typo in comment. s/put/Put/ R=ken OCL=23419 CL=23419 --- src/lib/fmt/format.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.48.1