From: Nan Xiao Date: Sat, 27 Mar 2021 10:23:59 +0000 (+0800) Subject: Fix typos in bio.pod X-Git-Tag: openssl-3.0.0-alpha14~87 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1ee1a169c310f3dc735a3d83298686cf70aa427a;p=thirdparty%2Fopenssl.git Fix typos in bio.pod CLA: trivial Reviewed-by: Kurt Roeckx Reviewed-by: Shane Lontis Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/14706) --- diff --git a/doc/man7/bio.pod b/doc/man7/bio.pod index 092bdde1841..e2c11665b9d 100644 --- a/doc/man7/bio.pod +++ b/doc/man7/bio.pod @@ -17,7 +17,7 @@ details from an application. If an application uses a BIO for its I/O it can transparently handle SSL connections, unencrypted network connections and file I/O. -There are two type of BIO, a source/sink BIO and a filter BIO. +There are two types of BIO, a source/sink BIO and a filter BIO. As its name implies a source/sink BIO is a source and/or sink of data, examples include a socket BIO and a file BIO. @@ -31,7 +31,7 @@ BIO will encrypt data if it is being written to and decrypt data if it is being read from. BIOs can be joined together to form a chain (a single BIO is a chain -with one component). A chain normally consist of one source/sink +with one component). A chain normally consists of one source/sink BIO and one or more filter BIOs. Data read from or written to the first BIO then traverses the chain to the end (normally a source/sink BIO).