Commit b935728a authored by Roger Peppe's avatar Roger Peppe Committed by Rob Pike

fmt: fix minor typo

R=r, r2
CC=golang-dev
https://golang.org/cl/4187041
parent 047cf316
...@@ -30,7 +30,7 @@ type runeUnreader interface { ...@@ -30,7 +30,7 @@ type runeUnreader interface {
type ScanState interface { type ScanState interface {
// GetRune reads the next rune (Unicode code point) from the input. // GetRune reads the next rune (Unicode code point) from the input.
GetRune() (rune int, err os.Error) GetRune() (rune int, err os.Error)
// UngetRune causes the next call to GetRune to return the rune. // UngetRune causes the next call to GetRune to return the same rune.
UngetRune() UngetRune()
// Width returns the value of the width option and whether it has been set. // Width returns the value of the width option and whether it has been set.
// The unit is Unicode code points. // The unit is Unicode code points.
......
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