1
0
mirror of https://github.com/golang/go synced 2024-11-24 08:20:03 -07:00

fmt: fix typo in help doc

LGTM=iant
R=golang-codereviews, iant
CC=golang-codereviews
https://golang.org/cl/110110045
This commit is contained in:
Mihai Borobocea 2014-06-24 16:59:33 -07:00 committed by Ian Lance Taylor
parent 0852368f88
commit 92d58c7e46

View File

@ -160,7 +160,7 @@
For example,
fmt.Sprintf("%[2]d %[1]d\n", 11, 22)
will yield "22, 11", while
will yield "22 11", while
fmt.Sprintf("%[3]*.[2]*[1]f", 12.0, 2, 6),
equivalent to
fmt.Sprintf("%6.2f", 12.0),