From: Andrew Gerrand Date: Mon, 9 Jan 2012 01:48:42 +0000 (+1100) Subject: doc: float -> float64 in Effective Go template X-Git-Tag: weekly.2012-01-15~129 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=7478bb981a7f7fb1d9796a23a560c00013b9a7c1;p=gostls13.git doc: float -> float64 in Effective Go template R=r, dsymonds CC=golang-dev https://golang.org/cl/5530047 --- diff --git a/doc/effective_go.tmpl b/doc/effective_go.tmpl index 21b3b22df6..e3d311eea2 100644 --- a/doc/effective_go.tmpl +++ b/doc/effective_go.tmpl @@ -1490,7 +1490,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" }