misspellings fixes by https://github.com/vlajos/misspell_fixer
[openssl.git] / doc / crypto / BN_new.pod
index ee956457516a9cc5b974f1f85c9f6974e5233945..ab7a105e3ad7e9f19b3ab386c9f3888dff17b93c 100644 (file)
@@ -20,7 +20,7 @@ BN_new, BN_init, BN_clear, BN_free, BN_clear_free - allocate and free BIGNUMs
 
 =head1 DESCRIPTION
 
-BN_new() allocated and initializes a B<BIGNUM> structure. BN_init()
+BN_new() allocates and initializes a B<BIGNUM> structure. BN_init()
 initializes an existing uninitialized B<BIGNUM>.
 
 BN_clear() is used to destroy sensitive data such as keys when they
@@ -35,18 +35,18 @@ overwrites the data before the memory is returned to the system.
 
 BN_new() returns a pointer to the B<BIGNUM>. If the allocation fails,
 it returns B<NULL> and sets an error code that can be obtained
-by ERR_get_error(3).
+by L<ERR_get_error(3)|ERR_get_error(3)>.
 
 BN_init(), BN_clear(), BN_free() and BN_clear_free() have no return
 values.
 
 =head1 SEE ALSO
 
-bn(3), err(3)
+L<bn(3)|bn(3)>, L<ERR_get_error(3)|ERR_get_error(3)>
 
 =head1 HISTORY
 
-BN_new(), BN_clear(), BN_free() and BN_clear_free() are availabe in
+BN_new(), BN_clear(), BN_free() and BN_clear_free() are available in
 all versions on SSLeay and OpenSSL.  BN_init() was added in SSLeay
 0.9.1b.