]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Typo fixes
authorAndrew M. Kuchling <amk@amk.ca>
Fri, 21 Apr 2006 12:40:03 +0000 (12:40 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Fri, 21 Apr 2006 12:40:03 +0000 (12:40 +0000)
Doc/lib/libcodecs.tex

index b697bc69e61431c7ef1f40cc86cd8158e7ff8bfc..27e3eeace1a3532a2dc5067681cd818cdc85062a 100644 (file)
@@ -72,28 +72,28 @@ 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}{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.