[Python-checkins] r45603 - python/branches/release24-maint/Doc/lib/libcodecs.tex

andrew.kuchling python-checkins at python.org
Fri Apr 21 14:40:03 CEST 2006


Author: andrew.kuchling
Date: Fri Apr 21 14:40:03 2006
New Revision: 45603

Modified:
   python/branches/release24-maint/Doc/lib/libcodecs.tex
Log:
Typo fixes

Modified: python/branches/release24-maint/Doc/lib/libcodecs.tex
==============================================================================
--- python/branches/release24-maint/Doc/lib/libcodecs.tex	(original)
+++ python/branches/release24-maint/Doc/lib/libcodecs.tex	Fri Apr 21 14:40:03 2006
@@ -72,28 +72,28 @@
 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.


More information about the Python-checkins mailing list