1
0
mirror of https://github.com/golang/go synced 2024-11-23 07:20:06 -07:00

fmt: fix a typo

R=golang-dev, dsymonds
CC=golang-dev
https://golang.org/cl/6937065
This commit is contained in:
Oling Cat 2012-12-17 18:13:12 +11:00 committed by David Symonds
parent 8c86f1f331
commit 6dd7da8566

View File

@ -396,7 +396,7 @@ func (f *fmt) fmt_f64(v float64) { f.formatFloat(v, 'f', doPrec(f, 6), 64) }
// fmt_g64 formats a float64 in the 'f' or 'e' form according to size.
func (f *fmt) fmt_g64(v float64) { f.formatFloat(v, 'g', doPrec(f, -1), 64) }
// fmt_g64 formats a float64 in the 'f' or 'E' form according to size.
// fmt_G64 formats a float64 in the 'f' or 'E' form according to size.
func (f *fmt) fmt_G64(v float64) { f.formatFloat(v, 'G', doPrec(f, -1), 64) }
// fmt_fb64 formats a float64 in the form -123p3 (exponent is power of 2).