From b7f44e97a362f3c57a33712b2b092dc9ca91e478 Mon Sep 17 00:00:00 2001 From: "Jeff R. Allen" Date: Mon, 9 Jan 2012 11:53:20 +1100 Subject: [PATCH] doc: float -> float64 in Effective Go R=golang-dev CC=golang-dev https://golang.org/cl/5531046 --- doc/effective_go.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" }