diff options
author | Ulf Möller <ulf@openssl.org> | 2000-02-04 00:23:24 +0100 |
---|---|---|
committer | Ulf Möller <ulf@openssl.org> | 2000-02-04 00:23:24 +0100 |
commit | 657e60fa00ddde3618600d6306be913214d30457 (patch) | |
tree | 6ea080becb16ab3d808ec45064b17b7fedb745a2 /crypto/bn/bn_lib.c | |
parent | Document hash functions. (diff) | |
download | openssl-657e60fa00ddde3618600d6306be913214d30457.tar.xz openssl-657e60fa00ddde3618600d6306be913214d30457.zip |
ispell (and minor modifications)
Diffstat (limited to 'crypto/bn/bn_lib.c')
-rw-r--r-- | crypto/bn/bn_lib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/bn/bn_lib.c b/crypto/bn/bn_lib.c index df79d6e338..e734909968 100644 --- a/crypto/bn/bn_lib.c +++ b/crypto/bn/bn_lib.c @@ -394,7 +394,7 @@ BIGNUM *bn_expand2(BIGNUM *b, int words) * if A and B happen to share same cache line such code is going to * cause severe cache trashing. Both factors have severe impact on * performance of modern CPUs and this is the reason why this - * particulare piece of code is #ifdefed away and replaced by more + * particular piece of code is #ifdefed away and replaced by more * "friendly" version found in #else section below. This comment * also applies to BN_copy function. * @@ -425,7 +425,7 @@ BIGNUM *bn_expand2(BIGNUM *b, int words) A[0]=B[0]; case 0: /* I need the 'case 0' entry for utrix cc. - * If the optimiser is turned on, it does the + * If the optimizer is turned on, it does the * switch table by doing * a=top&7 * a--; |