summaryrefslogtreecommitdiffstats
path: root/doc/internal
diff options
context:
space:
mode:
authorAlex Boboc <me@alexboboc.com>2020-02-15 16:55:30 -0800
committerRichard Levitte <levitte@openssl.org>2020-02-18 13:35:08 +0100
commitaf61cbca1c7a7cdb5869d72203fe78c504fd3725 (patch)
tree4f1a92095394a018a4545ce375cf1a761ebb87d0 /doc/internal
parentd1eec097b99c3d16ada855505b406daa9ceb7d4f (diff)
DOC:Fix typos in ossl_param_bld_init
CLA: trivial Reviewed-by: Paul Dale <paul.dale@oracle.com> Reviewed-by: Nicola Tuveri <nic.tuv@gmail.com> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11104)
Diffstat (limited to 'doc/internal')
-rw-r--r--doc/internal/man3/ossl_param_bld_init.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/internal/man3/ossl_param_bld_init.pod b/doc/internal/man3/ossl_param_bld_init.pod
index 110192fbe0..8ae0dccb73 100644
--- a/doc/internal/man3/ossl_param_bld_init.pod
+++ b/doc/internal/man3/ossl_param_bld_init.pod
@@ -75,7 +75,7 @@ I<val> is stored by value and an expression or auto variable can be used.
ossl_param_bld_push_BN() is a function that will create an OSSL_PARAM object
that holds the specified BIGNUM I<bn>.
-If I<bn> is marked as being securely allocated, it's OSSL_PARAM representation
+If I<bn> is marked as being securely allocated, its OSSL_PARAM representation
will also be securely allocated.
The I<bn> argument is stored by reference and the underlying BIGNUM object
must exist until after ossl_param_bld_to_param() has been called.
@@ -84,7 +84,7 @@ ossl_param_bld_push_BN_pad() is a function that will create an OSSL_PARAM object
that holds the specified BIGNUM I<bn>.
The object will be padded to occupy exactly I<sz> bytes, if insufficient space
is specified an error results.
-If I<bn> is marked as being securely allocated, it's OSSL_PARAM representation
+If I<bn> is marked as being securely allocated, its OSSL_PARAM representation
will also be securely allocated.
The I<bn> argument is stored by reference and the underlying BIGNUM object
must exist until after ossl_param_bld_to_param() has been called.