summaryrefslogtreecommitdiff
path: root/mpi/mpih-mul.c
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>1998-04-14 17:51:11 +0000
committerWerner Koch <wk@gnupg.org>1998-04-14 17:51:11 +0000
commit85d94e41dd413ae2f5ddf363f241e96784444b67 (patch)
tree7fc9083499e1f32ecea505d9a1fb9a023615990d /mpi/mpih-mul.c
parent9a8d62b20eba18310d87eedb68828fa86326e1a2 (diff)
downloadlibgcrypt-85d94e41dd413ae2f5ddf363f241e96784444b67.tar.gz
applied Mathews typo and grammar fixes
Diffstat (limited to 'mpi/mpih-mul.c')
-rw-r--r--mpi/mpih-mul.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mpi/mpih-mul.c b/mpi/mpih-mul.c
index b0266469..f402f4ae 100644
--- a/mpi/mpih-mul.c
+++ b/mpi/mpih-mul.c
@@ -120,7 +120,7 @@ mul_n( mpi_ptr_t prodp, mpi_ptr_t up, mpi_ptr_t vp,
mpi_size_t size, mpi_ptr_t tspace )
{
if( size & 1 ) {
- /* The size is odd, the code code below doesn't handle that.
+ /* The size is odd, and the code below doesn't handle that.
* Multiply the least significant (size - 1) limbs with a recursive
* call, and handle the most significant limb of S1 and S2
* separately.
@@ -269,7 +269,7 @@ void
mpih_sqr_n( mpi_ptr_t prodp, mpi_ptr_t up, mpi_size_t size, mpi_ptr_t tspace)
{
if( size & 1 ) {
- /* The size is odd, the code code below doesn't handle that.
+ /* The size is odd, and the code below doesn't handle that.
* Multiply the least significant (size - 1) limbs with a recursive
* call, and handle the most significant limb of S1 and S2
* separately.