]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Fix typos in bio.pod
authorNan Xiao <nan@chinadtrace.org>
Sat, 27 Mar 2021 10:23:59 +0000 (18:23 +0800)
committerTomas Mraz <tomas@openssl.org>
Tue, 30 Mar 2021 17:01:52 +0000 (19:01 +0200)
CLA: trivial

Reviewed-by: Kurt Roeckx <kurt@roeckx.be>
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14706)

doc/man7/bio.pod

index 092bdde18413d384d7bdaca9ba5934db029edc6e..e2c11665b9d8fd14dd0620f3a454ed861f82be31 100644 (file)
@@ -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).