mirror of
https://github.com/golang/go
synced 2024-11-21 20:14:52 -07:00
fmt: fix minor typo
R=r, r2 CC=golang-dev https://golang.org/cl/4187041
This commit is contained in:
parent
047cf3161e
commit
b935728a17
@ -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.
|
||||||
|
Loading…
Reference in New Issue
Block a user