From 6dd7da85662ba2dcd2e31f0a4fbc810e33fbe212 Mon Sep 17 00:00:00 2001 From: Oling Cat Date: Mon, 17 Dec 2012 18:13:12 +1100 Subject: [PATCH] fmt: fix a typo R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/6937065 --- src/pkg/fmt/format.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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). -- 2.48.1