From 061a6d3cc5d115d8e01aeffe02d390a77d77787e Mon Sep 17 00:00:00 2001 From: vlefevre Date: Mon, 22 Jul 2013 02:20:41 +0000 Subject: =?UTF-8?q?Applied=20patch=203=20by=20Ond=C5=99ej=20B=C3=ADlka=20w?= =?UTF-8?q?ith=20some=20manual=20corrections,=20fixing=20typos:=20=20=20ht?= =?UTF-8?q?tps://sympa.inria.fr/sympa/arc/mpfr/2013-07/msg00016.html?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@8621 280ebfd0-de03-0410-8827-d642c229c3f4 --- src/pow_z.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/pow_z.c') diff --git a/src/pow_z.c b/src/pow_z.c index 69cd26f62..b8b06913f 100644 --- a/src/pow_z.c +++ b/src/pow_z.c @@ -280,7 +280,7 @@ mpfr_pow_z (mpfr_ptr y, mpfr_srcptr x, mpz_srcptr z, mpfr_rnd_t rnd) Nt = Nt + size_z + 3 + MPFR_INT_CEIL_LOG2 (Nt); /* ensures Nt >= bits(z)+2 */ - /* initialise of intermediary variable */ + /* initialize of intermediary variable */ mpfr_init2 (t, Nt); /* We will compute rnd(rnd1(1/x) ^ (-z)), where rnd1 is the rounding @@ -357,7 +357,7 @@ mpfr_pow_z (mpfr_ptr y, mpfr_srcptr x, mpz_srcptr z, mpfr_rnd_t rnd) if (MPFR_LIKELY (MPFR_CAN_ROUND (t, Nt - size_z - 2, MPFR_PREC (y), rnd))) break; - /* actualisation of the precision */ + /* actualization of the precision */ MPFR_ZIV_NEXT (loop, Nt); mpfr_set_prec (t, Nt); } -- cgit v1.2.1