diff options
author | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2015-09-15 13:59:49 +0000 |
---|---|---|
committer | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2015-09-15 13:59:49 +0000 |
commit | b2993ad4af40de2a23f4d07bbfe396e783ca0c6b (patch) | |
tree | 4be0130b9db368777e6187e4c30500473af0f6c6 /doc | |
parent | c46a39775f946143d2f355b6e26a0158b7ad5ff7 (diff) | |
download | mpfr-b2993ad4af40de2a23f4d07bbfe396e783ca0c6b.tar.gz |
[doc/mpfr.texi] Changed "returned value" to "return value" when this
is the value returned by the C function (synonymous, but sometimes
less ambiguous).
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@9691 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'doc')
-rw-r--r-- | doc/mpfr.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/mpfr.texi b/doc/mpfr.texi index a23ea8c2b..7efa20a56 100644 --- a/doc/mpfr.texi +++ b/doc/mpfr.texi @@ -2602,9 +2602,9 @@ similar way with some fixed rounding mode: When @var{op} is a zero or an infinity, set @var{rop} to the same value (with the same sign). -The returned value is zero when the result is exact, positive when it is +The return value is zero when the result is exact, positive when it is greater than the original value of @var{op}, and negative when it is smaller. -More precisely, the returned value is 0 when @var{op} is an integer +More precisely, the return value is 0 when @var{op} is an integer representable in @var{rop}, 1 or @minus{}1 when @var{op} is an integer that is not representable in @var{rop}, 2 or @minus{}2 when @var{op} is not an integer. @@ -2642,7 +2642,7 @@ Set @var{rop} to @var{op} rounded to an integer: If the result is not representable, it is rounded in the direction @var{rnd}. When @var{op} is a zero or an infinity, set @var{rop} to the same value (with the same sign). -The returned value is the ternary value associated with the considered +The return value is the ternary value associated with the considered round-to-integer function (regarded in the same way as any other mathematical function). @@ -2787,7 +2787,7 @@ be the case when @var{b} is near from a value exactly representable on Return the minimal number of bits required to store the significand of @var{x}, and 0 for special values, including 0. -Warning! The returned value can be less than @code{MPFR_PREC_MIN}, +Warning! The return value can be less than @code{MPFR_PREC_MIN}, in particular for the powers of two. If you use this function together with @code{mpfr_prec_round} in order to reduce the memory space occupied by a number, you may need to take the maximum of the returned precision |