From: tkawakita Date: Tue, 29 Jun 2021 15:46:05 +0000 (+0900) Subject: math/big: fix typo of comment (`BytesScanner` to `ByteScanner`) X-Git-Tag: go1.17rc1~33 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=3463852b7631adbdd65646539fc87d967dcd13e6;p=gostls13.git math/big: fix typo of comment (`BytesScanner` to `ByteScanner`) Change-Id: I0c2d26d6ede1452008992efbea7392162da65014 Reviewed-on: https://go-review.googlesource.com/c/go/+/331651 Reviewed-by: Robert Griesemer Reviewed-by: Ian Lance Taylor --- diff --git a/src/math/big/int.go b/src/math/big/int.go index 65f32487b5..7647346486 100644 --- a/src/math/big/int.go +++ b/src/math/big/int.go @@ -425,7 +425,7 @@ func (z *Int) SetString(s string, base int) (*Int, bool) { return z.setFromScanner(strings.NewReader(s), base) } -// setFromScanner implements SetString given an io.BytesScanner. +// setFromScanner implements SetString given an io.ByteScanner. // For documentation see comments of SetString. func (z *Int) setFromScanner(r io.ByteScanner, base int) (*Int, bool) { if _, _, err := z.scan(r, base); err != nil {