aboutsummaryrefslogtreecommitdiffstats
path: root/mpi/mpih-mul.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>1998-04-14 17:51:16 +0000
committerWerner Koch <[email protected]>1998-04-14 17:51:16 +0000
commit700c438def7defcdda1e806f4652b89987485882 (patch)
tree4bcf95b64e4e012351d8a837e329249a2963a397 /mpi/mpih-mul.c
parentnew release (diff)
downloadgnupg-700c438def7defcdda1e806f4652b89987485882.tar.gz
gnupg-700c438def7defcdda1e806f4652b89987485882.zip
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 b02664695..f402f4ae7 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.