aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorpeter zhang <i@ddatsh.com>2019-09-02 11:41:23 +0000
committerDaniel Martí <mvdan@mvdan.cc>2019-09-02 11:42:47 +0000
commitd5fe73393c40c7b4070aa73903671c8d1f23f2c2 (patch)
treeb573a74a091984ba2605ec1c9097abcd2f5d601f /src
parent4a457e3edc048be4a8bb7ab7e618f161d14b8893 (diff)
downloadgo-d5fe73393c40c7b4070aa73903671c8d1f23f2c2.tar.xz
math/big: fix a duplicate "the" in a comment
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>
Diffstat (limited to 'src')
-rw-r--r--src/math/big/ratconv.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/big/ratconv.go b/src/math/big/ratconv.go
index f29ec98cdc..941139e72d 100644
--- a/src/math/big/ratconv.go
+++ b/src/math/big/ratconv.go
@@ -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.