summaryrefslogtreecommitdiff
path: root/mpf/mul_ui.c
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2004-05-03 01:54:51 +0200
committerKevin Ryde <user42@zip.com.au>2004-05-03 01:54:51 +0200
commit001c8fefd19da651fa520363953a16c443315103 (patch)
treef903dc2b1bb84e0ec8d66e56d2a238aa28c048c3 /mpf/mul_ui.c
parentb77f32b03bfa57cf386aca51d12dcc3e62a55a25 (diff)
downloadgmp-001c8fefd19da651fa520363953a16c443315103.tar.gz
Fix a grammatical typo in the comments.
Diffstat (limited to 'mpf/mul_ui.c')
-rw-r--r--mpf/mul_ui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpf/mul_ui.c b/mpf/mul_ui.c
index 018f0b580..27e4e512b 100644
--- a/mpf/mul_ui.c
+++ b/mpf/mul_ui.c
@@ -51,7 +51,7 @@ MA 02111-1307, USA. */
this is also the case when add_1 is used, since if r==u and ABSIZ(r) >
PREC(r) then the mpn_mul_1 overwrites the low part of the input.
- An reuse r==u with size > prec can occur from a size PREC(r)+1 in the
+ A reuse r==u with size > prec can occur from a size PREC(r)+1 in the
usual way, or it can occur from an mpf_set_prec_raw leaving a bigger
sized value. In both cases we can end up calling mpn_mul_1 with
overlapping src and dst regions, but this will be with dst < src and such