More new BIO docs, correct some old ones.
[openssl.git] / doc / crypto / bio.pod
index d86ce4bc007801ef34a473bd0022679ff20999a7..987ec838fb32a1722033bf8d5522729154f6b76c 100644 (file)
@@ -20,7 +20,7 @@ connections and file I/O.
 
 There are two type of BIO, a source/sink BIO and a filter BIO.
 
-As its name implies a source/sink BIO is a source or sink of data,
+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.
 
 A filter BIO takes data from one BIO and passes it through to
@@ -34,7 +34,7 @@ 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
 BIO and one or more filter BIOs. Data read from or written to the
-end BIO then traverses the chain to the end (normally a source/sink
+first BIO then traverses the chain to the end (normally a source/sink
 BIO).
 
 =head1 SEE ALSO