summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2006-07-05 14:23:57 +0000
committerzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2006-07-05 14:23:57 +0000
commit255a5f65b772f1e887349eae7c2ea0ba3958c794 (patch)
treed9a86bdded77cc0357eb2a4ec9c4a5c2630da9e8
parentb0e2eadf26fc1be84c8520006fd9aa88507764e2 (diff)
downloadmpfr-255a5f65b772f1e887349eae7c2ea0ba3958c794.tar.gz
fixed wrong comment (thanks Keith Briggs)
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@4098 280ebfd0-de03-0410-8827-d642c229c3f4
-rw-r--r--root.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/root.c b/root.c
index 3139b2d90..66c6b6788 100644
--- a/root.c
+++ b/root.c
@@ -166,7 +166,7 @@ mpfr_root (mpfr_ptr y, mpfr_srcptr x, unsigned long k, mp_rnd_t rnd_mode)
/* invariant: x = m*2^e, with e divisible by k */
- /* we reuse the variable m to store the cube root, since it is not needed
+ /* we reuse the variable m to store the kth root, since it is not needed
any more: we just need to know if the root is exact */
inexact = MPZ_ROOT (m, m, k) == 0;