aboutsummaryrefslogtreecommitdiff
path: root/src/math/big/float.go
diff options
context:
space:
mode:
authorEitan Adler <lists@eitanadler.com>2017-03-05 09:14:38 -0800
committerIan Lance Taylor <iant@golang.org>2017-03-06 04:39:12 +0000
commit789c5255a4ee2bca8906baa15fc3e400054ff44d (patch)
tree80ccd03eb87a1dab0503a64c52eb3be0a834de06 /src/math/big/float.go
parent694f9e36aa508116b8fd0bf2c42e680f2937dd56 (diff)
downloadgo-789c5255a4ee2bca8906baa15fc3e400054ff44d.tar.xz
all: remove the the duplicate words
Change-Id: I6343c162e27e2e492547c96f1fc504909b1c03c0 Reviewed-on: https://go-review.googlesource.com/37793 Reviewed-by: Daniel Martí <mvdan@mvdan.cc> Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'src/math/big/float.go')
-rw-r--r--src/math/big/float.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/big/float.go b/src/math/big/float.go
index aabd7b4477..6517e2063c 100644
--- a/src/math/big/float.go
+++ b/src/math/big/float.go
@@ -97,7 +97,7 @@ const (
// the slice may (but doesn't have to) be shorter if the mantissa contains
// trailing 0 bits. x.mant is normalized if the msb of x.mant == 1 (i.e.,
// the msb is shifted all the way "to the left"). Thus, if the mantissa has
-// trailing 0 bits or x.prec is not a multiple of the the Word size _W,
+// trailing 0 bits or x.prec is not a multiple of the Word size _W,
// x.mant[0] has trailing zero bits. The msb of the mantissa corresponds
// to the value 0.5; the exponent x.exp shifts the binary point as needed.
//