From 3bbc8638d5dd2564b3c60a603c094c0e570bd301 Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Wed, 29 Oct 2014 06:53:05 -0700 Subject: [PATCH] fmt: fix one-letter typo in doc.go Stupid mistake in previous CL. TBR=rsc R=rsc CC=golang-codereviews https://golang.org/cl/166880043 --- src/fmt/doc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fmt/doc.go b/src/fmt/doc.go index 28387f5d4b..ee54463e27 100644 --- a/src/fmt/doc.go +++ b/src/fmt/doc.go @@ -39,7 +39,7 @@ %f decimal point but no exponent, e.g. 123.456 %F synonym for %f %g %e for large exponents, %f otherwise - %G %E for large exponents, %G otherwise + %G %E for large exponents, %F otherwise String and slice of bytes: %s the uninterpreted bytes of the string or slice %q a double-quoted string safely escaped with Go syntax -- 2.50.0