]> Cypherpunks repositories - gostls13.git/commitdiff
math/big: fix a duplicate "the" in a comment
authorpeter zhang <i@ddatsh.com>
Mon, 2 Sep 2019 11:41:23 +0000 (11:41 +0000)
committerDaniel Martí <mvdan@mvdan.cc>
Mon, 2 Sep 2019 11:42:47 +0000 (11:42 +0000)
Change-Id: Ib637381ab8a12aeb798576b781e1b3c458ba812d
GitHub-Last-Rev: 12994496b6b636d75564e5ae7e938b65bca526df
GitHub-Pull-Request: golang/go#34017
Reviewed-on: https://go-review.googlesource.com/c/go/+/192877
Reviewed-by: Daniel Martí <mvdan@mvdan.cc>
src/math/big/ratconv.go

index f29ec98cdcb54a6b14b2d0aafa52e50710d76bab..941139e72d1c4af0828cbc438fd82a088ad43dfe 100644 (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.