Correct typos that ispell did not find.
authorBodo Möller <bodo@openssl.org>
Thu, 27 Jan 2000 08:57:57 +0000 (08:57 +0000)
committerBodo Möller <bodo@openssl.org>
Thu, 27 Jan 2000 08:57:57 +0000 (08:57 +0000)
doc/crypto/BN_set_bit.pod

index fd887ecd899c3f15176f91ee46bd30d7f96be7f6..bc581e701fb3da947fad6b19abf84e68dbc2d8a3 100644 (file)
@@ -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