From: Rob Pike Date: Wed, 29 Oct 2014 13:53:05 +0000 (-0700) Subject: fmt: fix one-letter typo in doc.go X-Git-Tag: go1.4beta1~9 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=3bbc8638d5dd2564b3c60a603c094c0e570bd301;p=gostls13.git 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 --- 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