aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/exp/norm/iter.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/exp/norm/iter.go')
-rw-r--r--libgo/go/exp/norm/iter.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/libgo/go/exp/norm/iter.go b/libgo/go/exp/norm/iter.go
index e37ad7b..c0ab25e 100644
--- a/libgo/go/exp/norm/iter.go
+++ b/libgo/go/exp/norm/iter.go
@@ -64,9 +64,9 @@ func (i *Iter) Done() bool {
}
// Next writes f(i.input[i.Pos():n]...) to buffer buf, where n is the
-// largest boundary of i.input such that the result fits in buf.
+// largest boundary of i.input such that the result fits in buf.
// It returns the number of bytes written to buf.
-// len(buf) should be at least MaxSegmentSize.
+// len(buf) should be at least MaxSegmentSize.
// Done must be false before calling Next.
func (i *Iter) Next(buf []byte) int {
return i.next(i, buf)