From: Jeff R. Allen Date: Mon, 9 Jan 2012 00:53:20 +0000 (+1100) Subject: doc: float -> float64 in Effective Go X-Git-Tag: weekly.2012-01-15~130 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=b7f44e97a362f3c57a33712b2b092dc9ca91e478;p=gostls13.git doc: float -> float64 in Effective Go R=golang-dev CC=golang-dev https://golang.org/cl/5531046 --- diff --git a/doc/effective_go.html b/doc/effective_go.html index 43b18e6179..fdf8aa101d 100644 --- a/doc/effective_go.html +++ b/doc/effective_go.html @@ -1494,7 +1494,7 @@ format %#v prints the value in full Go syntax.
 type T struct {
     a int
-    b float
+    b float64
     c string
 }
 t := &T{ 7, -2.35, "abc\tdef" }