mirror of
https://github.com/golang/go
synced 2024-11-23 06:00:08 -07:00
fix top-level comments
R=rsc DELTA=14 (13 added, 0 deleted, 1 changed) OCL=17858 CL=17867
This commit is contained in:
parent
84b66d25de
commit
db25e787fe
@ -5,10 +5,12 @@
|
|||||||
package fmt
|
package fmt
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Raw formatter. See print.go for a more palatable interface.
|
||||||
|
|
||||||
f := fmt.New();
|
f := fmt.New();
|
||||||
print f.d(1234).s("\n").str(); // create string, print it
|
print f.d(1234).s("\n").str(); // create string, print it
|
||||||
f.d(-1234).s("\n").put(); // print string
|
f.d(-1234).s("\n").put(); // print string
|
||||||
f.ud(^0).putnl(); // print string with automatic newline
|
f.ud(1<<63).putnl(); // print string with automatic newline
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// export Fmt, New;
|
// export Fmt, New;
|
||||||
|
@ -4,6 +4,11 @@
|
|||||||
|
|
||||||
package fmt
|
package fmt
|
||||||
|
|
||||||
|
/*
|
||||||
|
C-like printf, but because of reflection knowledge does not need
|
||||||
|
to be told about sizes and signedness (no %llud etc. - just %d).
|
||||||
|
*/
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt";
|
"fmt";
|
||||||
"reflect";
|
"reflect";
|
||||||
|
Loading…
Reference in New Issue
Block a user