Commit 84a7ee7e authored by Andrew M. Kuchling's avatar Andrew M. Kuchling

Typo fixes

parent 4e908107
...@@ -93,21 +93,21 @@ additional functions which use \function{lookup()} for the codec ...@@ -93,21 +93,21 @@ additional functions which use \function{lookup()} for the codec
lookup: lookup:
\begin{funcdesc}{getencoder}{encoding} \begin{funcdesc}{getencoder}{encoding}
Lookup up the codec for the given encoding and return its encoder Look up the codec for the given encoding and return its encoder
function. function.
Raises a \exception{LookupError} in case the encoding cannot be found. Raises a \exception{LookupError} in case the encoding cannot be found.
\end{funcdesc} \end{funcdesc}
\begin{funcdesc}{getdecoder}{encoding} \begin{funcdesc}{getdecoder}{encoding}
Lookup up the codec for the given encoding and return its decoder Look up the codec for the given encoding and return its decoder
function. function.
Raises a \exception{LookupError} in case the encoding cannot be found. Raises a \exception{LookupError} in case the encoding cannot be found.
\end{funcdesc} \end{funcdesc}
\begin{funcdesc}{getincrementalencoder}{encoding} \begin{funcdesc}{getincrementalencoder}{encoding}
Lookup up the codec for the given encoding and return its incremental encoder Look up the codec for the given encoding and return its incremental encoder
class or factory function. class or factory function.
Raises a \exception{LookupError} in case the encoding cannot be found or the Raises a \exception{LookupError} in case the encoding cannot be found or the
...@@ -116,7 +116,7 @@ codec doesn't support an incremental encoder. ...@@ -116,7 +116,7 @@ codec doesn't support an incremental encoder.
\end{funcdesc} \end{funcdesc}
\begin{funcdesc}{getincrementaldecoder}{encoding} \begin{funcdesc}{getincrementaldecoder}{encoding}
Lookup up the codec for the given encoding and return its incremental decoder Look up the codec for the given encoding and return its incremental decoder
class or factory function. class or factory function.
Raises a \exception{LookupError} in case the encoding cannot be found or the Raises a \exception{LookupError} in case the encoding cannot be found or the
...@@ -125,14 +125,14 @@ codec doesn't support an incremental decoder. ...@@ -125,14 +125,14 @@ codec doesn't support an incremental decoder.
\end{funcdesc} \end{funcdesc}
\begin{funcdesc}{getreader}{encoding} \begin{funcdesc}{getreader}{encoding}
Lookup up the codec for the given encoding and return its StreamReader Look up the codec for the given encoding and return its StreamReader
class or factory function. class or factory function.
Raises a \exception{LookupError} in case the encoding cannot be found. Raises a \exception{LookupError} in case the encoding cannot be found.
\end{funcdesc} \end{funcdesc}
\begin{funcdesc}{getwriter}{encoding} \begin{funcdesc}{getwriter}{encoding}
Lookup up the codec for the given encoding and return its StreamWriter Look up the codec for the given encoding and return its StreamWriter
class or factory function. class or factory function.
Raises a \exception{LookupError} in case the encoding cannot be found. Raises a \exception{LookupError} in case the encoding cannot be found.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment