1
0
mirror of https://github.com/golang/go synced 2024-09-30 00:34:31 -06:00

math/big: fix a duplicate "the" in a comment

This commit is contained in:
peter zhang 2019-09-02 16:09:04 +08:00
parent fa7d40abe0
commit 12994496b6

View File

@ -123,7 +123,7 @@ func (z *Rat) SetString(s string) (*Rat, bool) {
// Multiplications are commutative, so we can apply them in any
// order. We only have powers of 2 and 10, and we split powers
// of 10 into the product of the same powers of 2 and 5. This
// may reduce the the size of shift/multiplication factors or
// may reduce the size of shift/multiplication factors or
// divisors required to create the final fraction, depending
// on the actual floating-point value.