1
0
mirror of https://github.com/golang/go synced 2024-11-24 22:00:09 -07:00

doc/articles/laws_of_reflection.html: fix name of variable

Thanks to c.emil.hessman@gmail.com for pointing out the error.

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/12572043
This commit is contained in:
Rob Pike 2013-08-07 09:34:39 +10:00
parent f59064de80
commit a4eac94b57

View File

@ -148,7 +148,7 @@ Continuing, we can do this:
{{code "/doc/progs/interface.go" `/var empty interface{}/` `/STOP/`}}
<p>
and our empty interface value <code>e</code> will again contain
and our empty interface value, <code>empty</code>, will again contain
that same pair, (<code>tty</code>, <code>*os.File</code>). That's
handy: an empty interface can hold any value and contains all the
information we could ever need about that value.