diff options
Diffstat (limited to 'libgo/go/math/big/float.go')
-rw-r--r-- | libgo/go/math/big/float.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libgo/go/math/big/float.go b/libgo/go/math/big/float.go index b3c3295..da964ee 100644 --- a/libgo/go/math/big/float.go +++ b/libgo/go/math/big/float.go @@ -224,7 +224,9 @@ func (x *Float) Mode() RoundingMode { return x.mode } -// Acc returns the accuracy of x produced by the most recent operation. +// Acc returns the accuracy of x produced by the most recent +// operation, unless explicitly documented otherwise by that +// operation. func (x *Float) Acc() Accuracy { return x.acc } |