Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
08e47ebb
Commit
08e47ebb
authored
Jul 18, 2011
by
Rob Pike
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fmt: fix a couple of documentation glitches.
R=golang-dev, adg CC=golang-dev
https://golang.org/cl/4758050
parent
50d90451
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
print.go
src/pkg/fmt/print.go
+2
-2
No files found.
src/pkg/fmt/print.go
View file @
08e47ebb
...
...
@@ -53,7 +53,7 @@ type Formatter interface {
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.
// 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.
...
...
@@ -61,7 +61,7 @@ type Stringer interface {
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.
// The GoString method is used to print values passed as an operand
// to a %#v format.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment