From c5e403c13d3c2cde5ab2efa2c9286ad92b8962af Mon Sep 17 00:00:00 2001 From: miod <> Date: Thu, 10 Jul 2014 14:28:50 +0000 Subject: Fix examples description, and use less ambiguous wording. --- src/lib/libssl/src/doc/crypto/BIO_push.pod | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/lib/libssl/src/doc/crypto/BIO_push.pod b/src/lib/libssl/src/doc/crypto/BIO_push.pod index a3e2e383a5..39c964b272 100644 --- a/src/lib/libssl/src/doc/crypto/BIO_push.pod +++ b/src/lib/libssl/src/doc/crypto/BIO_push.pod @@ -13,7 +13,7 @@ BIO_push, BIO_pop - add and remove BIOs from a chain. =head1 DESCRIPTION -The BIO_push() function appends the BIO B to B, it returns +The BIO_push() function appends the BIO B to B, and returns B. BIO_pop() removes the BIO B from a chain and returns the next BIO @@ -40,7 +40,7 @@ If the call: BIO_push(b64, f); -is made then the new chain will be B. After making the calls +is made then the new chain will be B. After making the calls BIO_push(md2, b64); BIO_push(md1, md2); @@ -54,12 +54,12 @@ by B and B. If the call: BIO_pop(md2); -The call will return B and the new chain will be B data can +The call will return B and the new chain will be B; data can be written to B as before. =head1 RETURN VALUES -BIO_push() returns the end of the chain, B. +BIO_push() returns the beginning of the chain, B. BIO_pop() returns the next BIO in the chain, or NULL if there is no next BIO. -- cgit v1.2.3-55-g6feb