summaryrefslogtreecommitdiff
path: root/manual/arith.texi
diff options
context:
space:
mode:
authorBen Norht <ben@redfrontdoor.org>2013-05-28 17:20:24 -0400
committerCarlos O'Donell <carlos@redhat.com>2013-05-28 17:20:24 -0400
commit56b672e92e10ac2931236dba4e452699fd0d32d1 (patch)
treefee0a84ff91377792e74c04a304088d8b6bdf570 /manual/arith.texi
parent5e056687df90ac8988ac5a929f941d4b1edd76b1 (diff)
Doc fix for 'frexp' in arith.texi
It is the magnitude of the return value which lies in [0.5, 1), not the return value itself. --- 2013-05-28 Ben North <ben@redfrontdoor.org> * manual/arith.texi (frexp): It is the magnitude of the return value which lies in [0.5, 1), not the return value itself.
Diffstat (limited to 'manual/arith.texi')
-rw-r--r--manual/arith.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/manual/arith.texi b/manual/arith.texi
index ce8844ec2d..77056c3ea2 100644
--- a/manual/arith.texi
+++ b/manual/arith.texi
@@ -1221,8 +1221,8 @@ These functions are used to split the number @var{value}
into a normalized fraction and an exponent.
If the argument @var{value} is not zero, the return value is @var{value}
-times a power of two, and is always in the range 1/2 (inclusive) to 1
-(exclusive). The corresponding exponent is stored in
+times a power of two, and its magnitude is always in the range 1/2
+(inclusive) to 1 (exclusive). The corresponding exponent is stored in
@code{*@var{exponent}}; the return value multiplied by 2 raised to this
exponent equals the original number @var{value}.