summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2006-04-21 12:38:41 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2006-04-21 12:38:41 (GMT)
commit84a7ee7e91b2cc8a4ddaac5be9035da1a6f0b509 (patch)
tree0d88c1411117fcc342919d415d542f95ea74526c /Doc
parent4e908107b04b0f4dc64cca89d4a20819e0987620 (diff)
downloadcpython-84a7ee7e91b2cc8a4ddaac5be9035da1a6f0b509.zip
cpython-84a7ee7e91b2cc8a4ddaac5be9035da1a6f0b509.tar.gz
cpython-84a7ee7e91b2cc8a4ddaac5be9035da1a6f0b509.tar.bz2
Typo fixes
Diffstat (limited to 'Doc')
-rw-r--r--Doc/lib/libcodecs.tex12
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/lib/libcodecs.tex b/Doc/lib/libcodecs.tex
index 8a2417e..bf461d4 100644
--- a/Doc/lib/libcodecs.tex
+++ b/Doc/lib/libcodecs.tex
@@ -93,21 +93,21 @@ additional functions which use \function{lookup()} for the codec
lookup:
\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.
Raises a \exception{LookupError} in case the encoding cannot be found.
\end{funcdesc}
\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.
Raises a \exception{LookupError} in case the encoding cannot be found.
\end{funcdesc}
\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.
Raises a \exception{LookupError} in case the encoding cannot be found or the
@@ -116,7 +116,7 @@ codec doesn't support an incremental encoder.
\end{funcdesc}
\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.
Raises a \exception{LookupError} in case the encoding cannot be found or the
@@ -125,14 +125,14 @@ codec doesn't support an incremental decoder.
\end{funcdesc}
\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.
Raises a \exception{LookupError} in case the encoding cannot be found.
\end{funcdesc}
\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.
Raises a \exception{LookupError} in case the encoding cannot be found.