Commit 08e47ebb authored by Rob Pike's avatar Rob Pike

fmt: fix a couple of documentation glitches.

R=golang-dev, adg
CC=golang-dev
https://golang.org/cl/4758050
parent 50d90451
...@@ -53,7 +53,7 @@ type Formatter interface { ...@@ -53,7 +53,7 @@ type Formatter interface {
Format(f State, c int) Format(f State, c int)
} }
// Stringer is implemented by any value that has a String method(), // Stringer is implemented by any value that has a String method,
// which defines the ``native'' format for that value. // which defines the ``native'' format for that value.
// The String method is used to print values passed as an operand // The String method is used to print values passed as an operand
// to a %s or %v format or to an unformatted printer such as Print. // to a %s or %v format or to an unformatted printer such as Print.
...@@ -61,7 +61,7 @@ type Stringer interface { ...@@ -61,7 +61,7 @@ type Stringer interface {
String() string String() string
} }
// GoStringer is implemented by any value that has a GoString() method, // GoStringer is implemented by any value that has a GoString method,
// which defines the Go syntax for that value. // which defines the Go syntax for that value.
// The GoString method is used to print values passed as an operand // The GoString method is used to print values passed as an operand
// to a %#v format. // to a %#v format.
......
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