summaryrefslogtreecommitdiff
path: root/src
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
commit7d8c40f1a65329094210933bca66b8862b0c28b8 (patch)
tree958e96ceb235bfa4ec80c3615d304bae14052d5e /src
parent699ec71ffff8d60546232f7019dd5a6a391535b7 (diff)
downloadgo-7d8c40f1a65329094210933bca66b8862b0c28b8.tar.gz
fmt: fix one-letter typo in doc.go
Stupid mistake in previous CL. TBR=rsc R=rsc CC=golang-codereviews https://codereview.appspot.com/166880043
Diffstat (limited to 'src')
-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 28387f5d4..ee54463e2 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