diff options
author | Rob Pike <r@golang.org> | 2014-10-29 06:53:05 -0700 |
---|---|---|
committer | Rob Pike <r@golang.org> | 2014-10-29 06:53:05 -0700 |
commit | 3bbc8638d5dd2564b3c60a603c094c0e570bd301 (patch) | |
tree | e1f020432aadbff436ffe47f0096a92ee5af2297 /src/fmt | |
parent | 08b7805e458b4e205005d18d7e75dc73c27a3442 (diff) | |
download | go-git-3bbc8638d5dd2564b3c60a603c094c0e570bd301.tar.gz |
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
Diffstat (limited to 'src/fmt')
-rw-r--r-- | src/fmt/doc.go | 2 |
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 |