Commit b7c51c5f authored by Rob Phoenix's avatar Rob Phoenix Committed by Rob Pike

fmt: remove unnecessary trailing commas in doc.go

Change-Id: Ib5efe172c55ff624b6771c2f02c466e35ba6cc50
Reviewed-on: https://go-review.googlesource.com/45090Reviewed-by: default avatarRob Pike <r@golang.org>
parent 7be15861
...@@ -192,9 +192,9 @@ ...@@ -192,9 +192,9 @@
For example, For example,
fmt.Sprintf("%[2]d %[1]d\n", 11, 22) 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), fmt.Sprintf("%[3]*.[2]*[1]f", 12.0, 2, 6)
equivalent to equivalent to
fmt.Sprintf("%6.2f", 12.0), fmt.Sprintf("%6.2f", 12.0)
will yield " 12.00". Because an explicit index affects subsequent verbs, will yield " 12.00". Because an explicit index affects subsequent verbs,
this notation can be used to print the same values multiple times this notation can be used to print the same values multiple times
by resetting the index for the first argument to be repeated: by resetting the index for the first argument to be repeated:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment