summaryrefslogtreecommitdiffstats
path: root/doc/man3/BIO_find_type.pod
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man3/BIO_find_type.pod')
-rw-r--r--doc/man3/BIO_find_type.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/man3/BIO_find_type.pod b/doc/man3/BIO_find_type.pod
index 08ec161349..b8171942ef 100644
--- a/doc/man3/BIO_find_type.pod
+++ b/doc/man3/BIO_find_type.pod
@@ -45,8 +45,8 @@ BIO_method_type() returns the type of the BIO B<b>.
Traverse a chain looking for digest BIOs:
BIO *btmp;
- btmp = in_bio; /* in_bio is chain to search through */
+ btmp = in_bio; /* in_bio is chain to search through */
do {
btmp = BIO_find_type(btmp, BIO_TYPE_MD);
if (btmp == NULL)