From: Rob Pike Date: Fri, 8 May 2009 18:21:20 +0000 (-0700) Subject: update spec to io.Writer X-Git-Tag: weekly.2009-11-06~1683 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=fb24d792da87e4f16ac5ad4f3bb85262d789f649;p=gostls13.git update spec to io.Writer R=rsc DELTA=1 (0 added, 0 deleted, 1 changed) OCL=28528 CL=28531 --- diff --git a/doc/go_spec.html b/doc/go_spec.html index 28a96549a9..3c98df89c6 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -2305,7 +2305,7 @@ arguments. Given the function and call

-func Fprintf(f io.Write, format string, args ...)
+func Fprintf(f io.Writer, format string, args ...)
 Fprintf(os.Stdout, "%s %d", "hello", 23);