1
0
mirror of https://github.com/golang/go synced 2024-11-11 22:50:22 -07:00

update spec to io.Writer

R=rsc
DELTA=1  (0 added, 0 deleted, 1 changed)
OCL=28528
CL=28531
This commit is contained in:
Rob Pike 2009-05-08 11:21:20 -07:00
parent 1a304e1d93
commit fb24d792da

View File

@ -2305,7 +2305,7 @@ arguments.
Given the function and call
</p>
<pre>
func Fprintf(f io.Write, format string, args ...)
func Fprintf(f io.Writer, format string, args ...)
Fprintf(os.Stdout, "%s %d", "hello", 23);
</pre>