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
diff --git a/doc/go1.html b/doc/go1.html
index 6e63882..c681eff 100644
--- a/doc/go1.html
+++ b/doc/go1.html
@@ -1461,7 +1461,7 @@
</p>
<pre>
- fi.(*os.FileStat).Sys.(*syscall.Stat_t).Ino
+ fi.Sys().(*syscall.Stat_t).Ino
</pre>
<p>
diff --git a/doc/go1.tmpl b/doc/go1.tmpl
index 862fe0e..9cdbf4b 100644
--- a/doc/go1.tmpl
+++ b/doc/go1.tmpl
@@ -1364,7 +1364,7 @@
</p>
<pre>
- fi.(*os.FileStat).Sys.(*syscall.Stat_t).Ino
+ fi.Sys().(*syscall.Stat_t).Ino
</pre>
<p>