aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2014-10-29 06:53:05 -0700
committerRob Pike <r@golang.org>2014-10-29 06:53:05 -0700
commit3bbc8638d5dd2564b3c60a603c094c0e570bd301 (patch)
treee1f020432aadbff436ffe47f0096a92ee5af2297
parent08b7805e458b4e205005d18d7e75dc73c27a3442 (diff)
downloadgo-3bbc8638d5dd2564b3c60a603c094c0e570bd301.tar.gz
go-3bbc8638d5dd2564b3c60a603c094c0e570bd301.zip
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
-rw-r--r--src/fmt/doc.go2
1 files changed, 1 insertions, 1 deletions
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