mirror of
https://github.com/golang/go
synced 2024-11-18 20:04:52 -07:00
fix two print statements
R=gri OCL=14105 CL=14105
This commit is contained in:
parent
72d50900e3
commit
7293dab5a9
@ -66,13 +66,13 @@ func (f *Fmt) str() string {
|
||||
}
|
||||
|
||||
func (f *Fmt) put() {
|
||||
print f.buf;
|
||||
print(f.buf);
|
||||
f.clearbuf();
|
||||
f.clearflags();
|
||||
}
|
||||
|
||||
func (f *Fmt) putnl() {
|
||||
print f.buf, "\n";
|
||||
print(f.buf, "\n");
|
||||
f.clearbuf();
|
||||
f.clearflags();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user