summaryrefslogtreecommitdiffstats
path: root/doc/man3/BIO_f_md.pod
diff options
context:
space:
mode:
authorJames Muir <james@openssl.org>2023-12-15 21:21:46 -0500
committerTomas Mraz <tomas@openssl.org>2023-12-29 11:45:02 +0100
commitebcfd7ac78b7175f01cd5e82bfa932bcb8f21633 (patch)
treedf585309d5a98288cc14ad257bc6e39b1a8c3d55 /doc/man3/BIO_f_md.pod
parent8bc9bfab914afb680acae0c58034d25155b3e3f7 (diff)
doc: fix "the a" typos (and other things nearby)
Reviewed-by: Neil Horman <nhorman@openssl.org> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/23068) (cherry picked from commit aa3347ba9d670a747b46974ce46f2ed9ecb38662)
Diffstat (limited to 'doc/man3/BIO_f_md.pod')
-rw-r--r--doc/man3/BIO_f_md.pod6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/man3/BIO_f_md.pod b/doc/man3/BIO_f_md.pod
index c2b825e352..397952f05a 100644
--- a/doc/man3/BIO_f_md.pod
+++ b/doc/man3/BIO_f_md.pod
@@ -19,7 +19,7 @@ BIO_f_md, BIO_set_md, BIO_get_md, BIO_get_md_ctx - message digest BIO filter
=head1 DESCRIPTION
BIO_f_md() returns the message digest BIO method. This is a filter
-BIO that digests any data passed through it, it is a BIO wrapper
+BIO that digests any data passed through it. It is a BIO wrapper
for the digest routines EVP_DigestInit(), EVP_DigestUpdate()
and EVP_DigestFinal().
@@ -36,8 +36,8 @@ BIO_set_md() sets the message digest of BIO B<b> to B<md>: this
must be called to initialize a digest BIO before any data is
passed through it. It is a BIO_ctrl() macro.
-BIO_get_md() places the a pointer to the digest BIOs digest method
-in B<mdp>, it is a BIO_ctrl() macro.
+BIO_get_md() places a pointer to the digest BIOs digest method
+in B<mdp>. It is a BIO_ctrl() macro.
BIO_get_md_ctx() returns the digest BIOs context into B<mdcp>.