Skip to content

Commit 3a3773c

Browse files
brettcannonrobpike
authored andcommitted
doc/effective_go: make function signature match function body
In the Slices section of Effective Go, the os package's File.Read function is used as an example. Unfortunately the function signature does not match the function's code in the example, nor the os package's documentation. This change updates the function signature to match the os package and the pre-existing function code. Change-Id: Iae9f30c898d3a1ff8d47558ca104dfb3ff07112c Reviewed-on: https://go-review.googlesource.com/9845 Reviewed-by: Rob Pike <[email protected]>
1 parent e8fc93e commit 3a3773c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/effective_go.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1382,7 +1382,7 @@ <h3 id="slices">Slices</h3>
13821382
<code>os</code>:
13831383
</p>
13841384
<pre>
1385-
func (file *File) Read(buf []byte) (n int, err error)
1385+
func (f *File) Read(buf []byte) (n int, err error)
13861386
</pre>
13871387
<p>
13881388
The method returns the number of bytes read and an error value, if

0 commit comments

Comments
 (0)