[Python-checkins] r45621 - python/trunk/Doc/lib/libcodecs.tex

george.yoshida python-checkins at python.org
Fri Apr 21 18:34:18 CEST 2006


Author: george.yoshida
Date: Fri Apr 21 18:34:17 2006
New Revision: 45621

Modified:
   python/trunk/Doc/lib/libcodecs.tex
Log:
Correct the grammar


Modified: python/trunk/Doc/lib/libcodecs.tex
==============================================================================
--- python/trunk/Doc/lib/libcodecs.tex	(original)
+++ python/trunk/Doc/lib/libcodecs.tex	Fri Apr 21 18:34:17 2006
@@ -161,7 +161,7 @@
 \end{funcdesc}
 
 \begin{funcdesc}{lookup_error}{name}
-Return the error handler previously register under the name \var{name}.
+Return the error handler previously registered under the name \var{name}.
 
 Raises a \exception{LookupError} in case the handler cannot be found.
 \end{funcdesc}
@@ -366,7 +366,7 @@
 define in order to be compatible with the Python codec registry.
 
 \begin{classdesc}{IncrementalEncoder}{\optional{errors}}
-  Constructor for a \class{IncrementalEncoder} instance.
+  Constructor for an \class{IncrementalEncoder} instance.
 
   All incremental encoders must provide this constructor interface. They are
   free to add additional keyword arguments, but only the ones defined
@@ -413,7 +413,7 @@
 define in order to be compatible with the Python codec registry.
 
 \begin{classdesc}{IncrementalDecoder}{\optional{errors}}
-  Constructor for a \class{IncrementalDecoder} instance.
+  Constructor for an \class{IncrementalDecoder} instance.
 
   All incremental decoders must provide this constructor interface. They are
   free to add additional keyword arguments, but only the ones defined


More information about the Python-checkins mailing list