Commit d8819569 authored by Rob Pike's avatar Rob Pike

fix typo in comment. s/put/Put/

R=ken
OCL=23419
CL=23419
parent 9a7332fb
...@@ -13,7 +13,7 @@ import ( ...@@ -13,7 +13,7 @@ import (
f := fmt.New(); f := fmt.New();
print f.Fmt_d(1234).Fmt_s("\n").Str(); // create string, print it 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 f.Fmt_ud(1<<63).Putnl(); // print string with automatic newline
*/ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment