From 50b0a365ba8ea87e0a7155f7fd92de0c7dc2f941 Mon Sep 17 00:00:00 2001 From: Stefan Krah Date: Wed, 20 Jun 2012 23:38:51 +0200 Subject: [PATCH] Fix comment. --- Modules/_decimal/libmpdec/mpdecimal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_decimal/libmpdec/mpdecimal.c b/Modules/_decimal/libmpdec/mpdecimal.c index 09a51fc9b28..8f0c97be3e2 100644 --- a/Modules/_decimal/libmpdec/mpdecimal.c +++ b/Modules/_decimal/libmpdec/mpdecimal.c @@ -7080,7 +7080,7 @@ _mpd_qreciprocal(mpd_t *result, const mpd_t *a, const mpd_context_t *ctx, * q, r = divmod(coeff(a), coeff(b)) * * Strategy: Multiply the dividend by the reciprocal of the divisor. The - * inexact result is fixed by a small loop, using at most 2 iterations. + * inexact result is fixed by a small loop, using at most one iteration. * * ACL2 proofs: * ------------