Commit 7478bb98 authored by Andrew Gerrand's avatar Andrew Gerrand

doc: float -> float64 in Effective Go template

R=r, dsymonds
CC=golang-dev
https://golang.org/cl/5530047
parent b7f44e97
...@@ -1490,7 +1490,7 @@ format <code>%#v</code> prints the value in full Go syntax. ...@@ -1490,7 +1490,7 @@ format <code>%#v</code> prints the value in full Go syntax.
<pre> <pre>
type T struct { type T struct {
a int a int
b float b float64
c string c string
} }
t := &amp;T{ 7, -2.35, "abc\tdef" } t := &amp;T{ 7, -2.35, "abc\tdef" }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment