summaryrefslogtreecommitdiff
path: root/src/jn.c
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2011-01-24 16:37:43 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2011-01-24 16:37:43 +0000
commit54400abc50e1f67f1949e6e64f0b6a2eb4b64637 (patch)
treefd2799e09e69c46288afa200cc0d6bc84deaf08d /src/jn.c
parent2e791645a7d4f63f5fe975aa9ee4a80baab04a4d (diff)
downloadmpfr-54400abc50e1f67f1949e6e64f0b6a2eb4b64637.tar.gz
[src/jn.c] Corrected a comment.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@7421 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'src/jn.c')
-rw-r--r--src/jn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jn.c b/src/jn.c
index af51cf2b8..dafe4bbc5 100644
--- a/src/jn.c
+++ b/src/jn.c
@@ -195,7 +195,7 @@ mpfr_jn (mpfr_ptr res, long n, mpfr_srcptr z, mpfr_rnd_t r)
if (absn > 0)
mpfr_div_2ui (t, t, absn, MPFR_RNDN);
mpfr_set (s, t, MPFR_RNDN);
- /* note: we assume here that the maximal error is proportional to
+ /* note: we assume here that the maximal error bound is proportional to
2^exps, which is true also in the case where s=0 */
exps = MPFR_IS_ZERO (s) ? MPFR_EMIN_MIN : MPFR_GET_EXP (s);
expT = exps;