diff options
author | George Yoshida <dynkin@gmail.com> | 2006-04-21 16:34:17 (GMT) |
---|---|---|
committer | George Yoshida <dynkin@gmail.com> | 2006-04-21 16:34:17 (GMT) |
commit | cd84b92f0820f5aeca1270c8cf36da68465cb2ca (patch) | |
tree | 91795df52e62a0e975eb175eb4982ead6c371e8b | |
parent | db8955bc54459f00825fcc66581cb3fd2e5a3648 (diff) | |
download | cpython-cd84b92f0820f5aeca1270c8cf36da68465cb2ca.zip cpython-cd84b92f0820f5aeca1270c8cf36da68465cb2ca.tar.gz cpython-cd84b92f0820f5aeca1270c8cf36da68465cb2ca.tar.bz2 |
Correct the grammar
-rw-r--r-- | Doc/lib/libcodecs.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/lib/libcodecs.tex b/Doc/lib/libcodecs.tex index 6e0bc8d..05c0375 100644 --- a/Doc/lib/libcodecs.tex +++ b/Doc/lib/libcodecs.tex @@ -161,7 +161,7 @@ directly. \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 @@ steps. It defines the following methods which every incremental encoder must 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 @@ steps. It defines the following methods which every incremental decoder must 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 |