summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2003-10-06 16:11:15 +0000
committerzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2003-10-06 16:11:15 +0000
commit98bde081af760d0e356a968f352b7c3079774925 (patch)
treec257eeee0aa7201688c8dfd0bfc1eafbeefe67f7
parent1bf291d11c8389ebdb657a645ff8da5758a6eee6 (diff)
downloadmpfr-98bde081af760d0e356a968f352b7c3079774925.tar.gz
fixed comment of mpfr_round_raw_generic
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@2481 280ebfd0-de03-0410-8827-d642c229c3f4
-rw-r--r--round_prec.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/round_prec.c b/round_prec.c
index e569a9df9..6440d53fd 100644
--- a/round_prec.c
+++ b/round_prec.c
@@ -33,10 +33,10 @@ MA 02111-1307, USA. */
* If flag = 0, puts in y the value of xp (with precision xprec and
* sign 1 if negative=0, -1 otherwise) rounded to precision yprec and
* direction rnd_mode. Supposes x is not zero nor NaN nor +/- Infinity
- * (i.e. *xp != 0). If inexp != NULL, computes the inexact flag of the
- * rounding.
+ * (i.e. *xp != 0).
*
- * In case of even rounding when rnd = GMP_RNDN, returns 2 or -2.
+ * If inexp != NULL, computes the inexact flag of the rounding.
+ * (In case of even rounding when rnd = GMP_RNDN, puts 2 or -2 in *inexp.)
*
* If flag = 1, just returns whether one should add 1 or not for rounding.
*