From: Oling Cat Date: Mon, 17 Dec 2012 07:13:12 +0000 (+1100) Subject: fmt: fix a typo X-Git-Tag: go1.1rc2~1614 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=6dd7da85662ba2dcd2e31f0a4fbc810e33fbe212;p=gostls13.git fmt: fix a typo R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/6937065 --- diff --git a/src/pkg/fmt/format.go b/src/pkg/fmt/format.go index d1167ebbf9..c3d7605fe8 100644 --- a/src/pkg/fmt/format.go +++ b/src/pkg/fmt/format.go @@ -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).