aboutsummaryrefslogtreecommitdiff
path: root/src/fmt/doc.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/fmt/doc.go')
-rw-r--r--src/fmt/doc.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fmt/doc.go b/src/fmt/doc.go
index a7115809d3..d05ee519c3 100644
--- a/src/fmt/doc.go
+++ b/src/fmt/doc.go
@@ -150,7 +150,8 @@
concrete value that it holds, and printing continues with the next rule.
2. If an operand implements the Formatter interface, it will
- be invoked. Formatter provides fine control of formatting.
+ be invoked. In this case the interpretation of verbs and flags is
+ controlled by that implementation.
3. If the %v verb is used with the # flag (%#v) and the operand
implements the GoStringer interface, that will be invoked.