mirror of
https://github.com/golang/go
synced 2024-11-23 11:20:05 -07:00
bytes: correct tense in comment
Undo incorrect change accidentally made in CL 299109. Change-Id: Iba29827d0fbd3637c311cebc50c2f4ea437fc582 Reviewed-on: https://go-review.googlesource.com/c/go/+/301830 Trust: Ian Lance Taylor <iant@golang.org> Reviewed-by: Tobias Klauser <tobias.klauser@gmail.com>
This commit is contained in:
parent
0f4bb9627e
commit
8ac6544564
@ -387,7 +387,7 @@ var errUnreadByte = errors.New("bytes.Buffer: UnreadByte: previous operation was
|
|||||||
|
|
||||||
// UnreadByte unreads the last byte returned by the most recent successful
|
// UnreadByte unreads the last byte returned by the most recent successful
|
||||||
// read operation that read at least one byte. If a write has happened since
|
// read operation that read at least one byte. If a write has happened since
|
||||||
// the last read, if the last read returned an error, or if the read reads zero
|
// the last read, if the last read returned an error, or if the read read zero
|
||||||
// bytes, UnreadByte returns an error.
|
// bytes, UnreadByte returns an error.
|
||||||
func (b *Buffer) UnreadByte() error {
|
func (b *Buffer) UnreadByte() error {
|
||||||
if b.lastRead == opInvalid {
|
if b.lastRead == opInvalid {
|
||||||
|
Loading…
Reference in New Issue
Block a user