From: Rob Pike Date: Tue, 6 Aug 2013 23:34:39 +0000 (+1000) Subject: doc/articles/laws_of_reflection.html: fix name of variable X-Git-Tag: go1.2rc2~750 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a4eac94b5710539829e9ca0ed20e6a6a307f288d;p=gostls13.git 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 --- diff --git a/doc/articles/laws_of_reflection.html b/doc/articles/laws_of_reflection.html index 81f6697ce5..57a769692a 100644 --- a/doc/articles/laws_of_reflection.html +++ b/doc/articles/laws_of_reflection.html @@ -148,7 +148,7 @@ Continuing, we can do this: {{code "/doc/progs/interface.go" `/var empty interface{}/` `/STOP/`}}

-and our empty interface value e will again contain +and our empty interface value, empty, will again contain that same pair, (tty, *os.File). That's handy: an empty interface can hold any value and contains all the information we could ever need about that value.