[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
master 23ef804 2/2: * src/mini-gmp.c: Fix comment typos.
From: |
Paul Eggert |
Subject: |
master 23ef804 2/2: * src/mini-gmp.c: Fix comment typos. |
Date: |
Sun, 26 Jan 2020 15:54:54 -0500 (EST) |
branch: master
commit 23ef804eb55ed7324509b81638c66532344fe523
Author: Paul Eggert <address@hidden>
Commit: Paul Eggert <address@hidden>
* src/mini-gmp.c: Fix comment typos.
---
src/mini-gmp.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/mini-gmp.c b/src/mini-gmp.c
index 09c5436..2e789a2 100644
--- a/src/mini-gmp.c
+++ b/src/mini-gmp.c
@@ -3418,7 +3418,7 @@ gmp_lucas_mod (mpz_t V, mpz_t Qk, long Q,
gmp_lucas_step_k_2k (V, Qk, n);
/* A step k->k+1 is performed if the bit in $n$ is 1 */
- /* mpz_tstbit(n,bs) or the the bit is 0 in $n$ but */
+ /* mpz_tstbit(n,bs) or the bit is 0 in $n$ but */
/* should be 1 in $n+1$ (bs == b0) */
if (b0 == bs || mpz_tstbit (n, bs))
{
@@ -4488,7 +4488,7 @@ mpz_export (void *r, size_t *countp, int order, size_t
size, int endian,
ptrdiff_t word_step;
/* The current (partial) limb. */
mp_limb_t limb;
- /* The number of bytes left to to in this limb. */
+ /* The number of bytes left to do in this limb. */
size_t bytes;
/* The index where the limb was read. */
mp_size_t i;