Commit a4bfe64f authored by Robert Griesemer's avatar Robert Griesemer

math/big: fix minor documentation issue

Change-Id: Ib42f75c03573cec16801b79a6eb9b1b542028f4f
Reviewed-on: https://go-review.googlesource.com/7524Reviewed-by: default avatarAlan Donovan <adonovan@google.com>
parent f6580319
...@@ -289,7 +289,7 @@ func (z *Float) setExp(e int64) { ...@@ -289,7 +289,7 @@ func (z *Float) setExp(e int64) {
// not require 0.5 <= |mant| < 1.0. Specifically: // not require 0.5 <= |mant| < 1.0. Specifically:
// //
// mant := new(Float) // mant := new(Float)
// new(Float).SetMantExp(mant, x.SetMantExp(mant)).Cmp(x) == 0 // new(Float).SetMantExp(mant, x.SetMantExp(mant)).Cmp(x).Eql() is true
// //
// Special cases are: // Special cases are:
// //
......
...@@ -279,7 +279,7 @@ func TestFloatSetMantExp(t *testing.T) { ...@@ -279,7 +279,7 @@ func TestFloatSetMantExp(t *testing.T) {
} }
// test inverse property // test inverse property
mant := new(Float) mant := new(Float)
if z.SetMantExp(mant, want.MantExp(mant)).Cmp(want) != 0 { if z.SetMantExp(mant, want.MantExp(mant)).Cmp(want).Neq() {
t.Errorf("Inverse property not satisfied: got %s; want %s", z.Format('g', 10), test.z) t.Errorf("Inverse property not satisfied: got %s; want %s", z.Format('g', 10), test.z)
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment