1
0
mirror of https://github.com/golang/go synced 2024-09-24 17:20:12 -06:00

doc: float -> float64 in Effective Go

R=golang-dev
CC=golang-dev
https://golang.org/cl/5531046
This commit is contained in:
Jeff R. Allen 2012-01-09 11:53:20 +11:00 committed by Andrew Gerrand
parent 9569c67a6b
commit b7f44e97a3

View File

@ -1494,7 +1494,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" }