summaryrefslogtreecommitdiff
path: root/mpz/and.c
diff options
context:
space:
mode:
authortege <tege@gmplib.org>1997-07-25 19:13:04 +0200
committertege <tege@gmplib.org>1997-07-25 19:13:04 +0200
commitb9e639fdd6fa6cf9b563dad68ddab63cae6990f6 (patch)
treeea70afa2387ca588d754d967c1fd1b09d733359e /mpz/and.c
parent0b6cc458c9e286d1502931f9e977f2dcf2053321 (diff)
downloadgmp-b9e639fdd6fa6cf9b563dad68ddab63cae6990f6.tar.gz
Fix typos in comments.
Diffstat (limited to 'mpz/and.c')
-rw-r--r--mpz/and.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/mpz/and.c b/mpz/and.c
index 838d4b1db..a4694235c 100644
--- a/mpz/and.c
+++ b/mpz/and.c
@@ -116,7 +116,7 @@ mpz_and (res, op1, op2)
_mpz_realloc (res, res_alloc);
res_ptr = res->_mp_d;
/* Don't re-read OP1_PTR and OP2_PTR. They point to
- temporary space--never to the space RES->_mp_D used
+ temporary space--never to the space RES->_mp_d used
to point to before reallocation. */
}
@@ -173,7 +173,7 @@ mpz_and (res, op1, op2)
operand as the result for those limbs is going to become zero
anyway. */
- /* Scan for the least significant. non-zero OP2 limb, and zero the
+ /* Scan for the least significant non-zero OP2 limb, and zero the
result meanwhile for those limb positions. (We will surely
find a non-zero limb, so we can write the loop with one
termination condition only.) */
@@ -237,7 +237,7 @@ mpz_and (res, op1, op2)
res_ptr = res->_mp_d;
op1_ptr = op1->_mp_d;
/* Don't re-read OP2_PTR. It points to temporary space--never
- to the space RES->_mp_D used to point to before reallocation. */
+ to the space RES->_mp_d used to point to before reallocation. */
}
MPN_COPY (res_ptr + op2_size, op1_ptr + op2_size,
@@ -264,7 +264,7 @@ mpz_and (res, op1, op2)
res_ptr = res->_mp_d;
op1_ptr = op1->_mp_d;
/* Don't re-read OP2_PTR. It points to temporary space--never
- to the space RES->_mp_D used to point to before reallocation. */
+ to the space RES->_mp_d used to point to before reallocation. */
}
for (i = res_size - 1; i >= 0; i--)