summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2017-12-15 02:44:49 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2017-12-15 02:44:49 +0000
commit7fd94e86e925a213ee1a4e99867eb1562a203c99 (patch)
tree40c09739920c898c3aa6be1a1508edc518f5d441
parent36927c5f52b5f5b0e53c477a92e6e41642b61fbe (diff)
downloadmpfr-7fd94e86e925a213ee1a4e99867eb1562a203c99.tar.gz
[src/root.c] Minor comment correction.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@11981 280ebfd0-de03-0410-8827-d642c229c3f4
-rw-r--r--src/root.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/root.c b/src/root.c
index 94ec95344..6bf9d578d 100644
--- a/src/root.c
+++ b/src/root.c
@@ -203,7 +203,7 @@ mpfr_rootn_ui (mpfr_ptr y, mpfr_srcptr x, unsigned long k, mpfr_rnd_t rnd_mode)
constraint is quite artificial because if |x| is close enough to 1, then
the exponent of log|x| does not need to be used (in the code, err would
be 1 in such a domain). So this constraint |x| <> 1 could be avoided in
- the code. However, this is an easy exact case to detect, so that such a
+ the code. However, this is an exact case easy to detect, so that such a
change would be useless. Values very close to 1 are not an issue, since
an underflow is not possible before the MPFR_GET_EXP.
*/