summaryrefslogtreecommitdiff
path: root/mpf/reldiff.c
diff options
context:
space:
mode:
authorTorbjorn Granlund <tege@gmplib.org>2010-04-10 15:44:35 +0200
committerTorbjorn Granlund <tege@gmplib.org>2010-04-10 15:44:35 +0200
commitb68e24649d8e246fe808af2db99a8064c92f37a7 (patch)
tree91e9168c5a8d50fa8856d183cad70c164566b7fc /mpf/reldiff.c
parent1e1061851878b39fdeb2eb8508b96f9bd50e1e38 (diff)
downloadgmp-b68e24649d8e246fe808af2db99a8064c92f37a7.tar.gz
Bring comments up-to-date with code.
Diffstat (limited to 'mpf/reldiff.c')
-rw-r--r--mpf/reldiff.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mpf/reldiff.c b/mpf/reldiff.c
index f9e40b66e..6a941b893 100644
--- a/mpf/reldiff.c
+++ b/mpf/reldiff.c
@@ -22,8 +22,8 @@ along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. */
/* The precision we use for d = x-y is based on what mpf_div will want from
- the dividend. It calls mpn_tdiv_qr to produce a quotient of rprec+1
- limbs. So rprec+1 == dsize - xsize + 1, hence dprec = rprec+xsize. */
+ the dividend. It calls mpn_div_q to produce a quotient of rprec+1 limbs.
+ So rprec+1 == dsize - xsize + 1, hence dprec = rprec+xsize. */
void
mpf_reldiff (mpf_t rdiff, mpf_srcptr x, mpf_srcptr y)