Commit aee1c38c authored by Rob Pike's avatar Rob Pike

go1: fix old reference to Sys method

The example was fixed; the simplifying rewrite was missed.

R=golang-dev
CC=golang-dev
https://golang.org/cl/5651080
parent 7531e8cb
......@@ -1461,7 +1461,7 @@ the i-number expression could be contracted to
</p>
<pre>
fi.(*os.FileStat).Sys.(*syscall.Stat_t).Ino
fi.Sys().(*syscall.Stat_t).Ino
</pre>
<p>
......
......@@ -1364,7 +1364,7 @@ the i-number expression could be contracted to
</p>
<pre>
fi.(*os.FileStat).Sys.(*syscall.Stat_t).Ino
fi.Sys().(*syscall.Stat_t).Ino
</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