1
0
mirror of https://github.com/golang/go synced 2024-11-12 09:20:22 -07:00

fmt: fix scientific notation in docs

Fixes #12340.

Change-Id: I17a8b3711a8593ec60882a0dcadb38f0cc138f4b
Reviewed-on: https://go-review.googlesource.com/13949
Reviewed-by: Rob Pike <r@golang.org>
This commit is contained in:
Shenghou Ma 2015-08-26 17:52:13 -04:00 committed by Minux Ma
parent 32d3b96e8b
commit 24e4cd9eb6

View File

@ -34,8 +34,8 @@
%b decimalless scientific notation with exponent a power of two,
in the manner of strconv.FormatFloat with the 'b' format,
e.g. -123456p-78
%e scientific notation, e.g. -1234.456e+78
%E scientific notation, e.g. -1234.456E+78
%e scientific notation, e.g. -1.234456e+78
%E scientific notation, e.g. -1.234456E+78
%f decimal point but no exponent, e.g. 123.456
%F synonym for %f
%g %e for large exponents, %f otherwise