Commit 4af3dda4 authored by Mike Rosset's avatar Mike Rosset Committed by Robert Griesemer

doc: update Go1 release notes to use correct WalkFunc error signature.

filepath's WalkFunc handler now uses errors package, and not
os.Error

R=golang-dev, gri
CC=golang-dev
https://golang.org/cl/5696067
parent 5c7799f1
......@@ -1604,7 +1604,7 @@ instead of a <code>Visitor</code> interface value.
</p>
<pre>
type WalkFunc func(path string, info *os.FileInfo, err os.Error) os.Error
type WalkFunc func(path string, info os.FileInfo, err error) error
</pre>
<p>
......
......@@ -1503,7 +1503,7 @@ instead of a <code>Visitor</code> interface value.
</p>
<pre>
type WalkFunc func(path string, info *os.FileInfo, err os.Error) os.Error
type WalkFunc func(path string, info os.FileInfo, err error) error
</pre>
<p>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment