1
0
mirror of https://github.com/golang/go synced 2024-11-21 17:14:45 -07:00

doc: float -> float64 in Effective Go template

R=r, dsymonds
CC=golang-dev
https://golang.org/cl/5530047
This commit is contained in:
Andrew Gerrand 2012-01-09 12:48:42 +11:00
parent b7f44e97a3
commit 7478bb981a

View File

@ -1490,7 +1490,7 @@ format <code>%#v</code> prints the value in full Go syntax.
<pre>
type T struct {
a int
b float
b float64
c string
}
t := &amp;T{ 7, -2.35, "abc\tdef" }