aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2000-01-27 08:57:57 +0000
committerBodo Möller <bodo@openssl.org>2000-01-27 08:57:57 +0000
commit387ca353fae3e65fae7e51651180ce7e0f6a44f8 (patch)
tree1318d00bad3cd1d82a0f31c5fd35f989dbc8648b /doc
parentd629757a8429118b7e5c51df3cc74f16b10170a5 (diff)
downloadopenssl-387ca353fae3e65fae7e51651180ce7e0f6a44f8.tar.gz
Correct typos that ispell did not find.
Diffstat (limited to 'doc')
-rw-r--r--doc/crypto/BN_set_bit.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/crypto/BN_set_bit.pod b/doc/crypto/BN_set_bit.pod
index fd887ecd89..bc581e701f 100644
--- a/doc/crypto/BN_set_bit.pod
+++ b/doc/crypto/BN_set_bit.pod
@@ -28,12 +28,12 @@ BN_set_bit() sets bit B<n> in B<a> to 1 (C<a|=(1E<lt>E<lt>n)>). The
number is expanded if necessary.
BN_clear_bit() sets bit B<n> in B<a> to 0 (C<a&=~(1E<lt>E<lt>n)>). An
-error occurs it B<a> is shorter than B<n> bits.
+error occurs if B<a> is shorter than B<n> bits.
BN_is_bit_set() tests if bit B<n> in B<a> is set.
BN_mask_bits() truncates B<a> to an B<n> bit number
-(C<a&=~((~0)E<gt>E<gt>n)>). An error occurs it B<a> already is
+(C<a&=~((~0)E<gt>E<gt>n)>). An error occurs if B<a> already is
shorter than B<n> bits.
BN_lshift() shifts B<a> left by B<n> bits and places the result in