From: Mihai Borobocea Date: Tue, 24 Jun 2014 23:59:33 +0000 (-0700) Subject: fmt: fix typo in help doc X-Git-Tag: go1.4beta1~1221 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=92d58c7e466b332129c1fc39f30d1d8e2f9c58c3;p=gostls13.git fmt: fix typo in help doc LGTM=iant R=golang-codereviews, iant CC=golang-codereviews https://golang.org/cl/110110045 --- diff --git a/src/pkg/fmt/doc.go b/src/pkg/fmt/doc.go index 02642d6ae7..5af8d3e717 100644 --- a/src/pkg/fmt/doc.go +++ b/src/pkg/fmt/doc.go @@ -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),