diff options
author | Fred Drake <fdrake@acm.org> | 1999-04-22 16:21:09 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-04-22 16:21:09 (GMT) |
commit | e2effbd32d56e35ba1789bbf3ca8e85fad37b49a (patch) | |
tree | 7ebfb6150345051a8775633ae77123ae20fa5459 | |
parent | bcd5454d63871e222a5c84c9e6a2e25b3c35511d (diff) | |
download | cpython-e2effbd32d56e35ba1789bbf3ca8e85fad37b49a.zip cpython-e2effbd32d56e35ba1789bbf3ca8e85fad37b49a.tar.gz cpython-e2effbd32d56e35ba1789bbf3ca8e85fad37b49a.tar.bz2 |
Fix minor (English) usage nits.
-rw-r--r-- | Doc/lib/libpoplib.tex | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/Doc/lib/libpoplib.tex b/Doc/lib/libpoplib.tex index 6485a77..e5d692a 100644 --- a/Doc/lib/libpoplib.tex +++ b/Doc/lib/libpoplib.tex @@ -4,9 +4,9 @@ %the imaplib ``chapter''. \section{\module{poplib} --- - POP3 protocol client.} -\declaremodule{standard}{poplib} + POP3 protocol client} +\declaremodule{standard}{poplib} \modulesynopsis{POP3 protocol client (requires sockets).} \indexii{POP3}{protocol} @@ -24,7 +24,7 @@ created when the instance is initialized. If \var{port} is omitted, the standard POP3 port (110) is used. \end{classdesc} -One exception is defined as attributes of the \module{poplib} module: +One exception is defined as an attribute of the \module{poplib} module: \begin{excdesc}{error_proto} Exception raised on any errors. The reason for the exception is @@ -32,13 +32,10 @@ passed to the constructor as a string. \end{excdesc} -\subsection{POP3 Objects} -\label{pop3-objects} +\subsection{POP3 Objects \label{pop3-objects}} All POP3 commands are represented by methods of the same name, -in lower-case. - -Most commands return the response text sent by the server. +in lower-case; most return the response text sent by the server. An \class{POP3} instance has the following methods: @@ -112,8 +109,7 @@ message, otherwise result is list \code{['response', \end{methoddesc} -\subsection{POP3 Example} -\label{pop3-example} +\subsection{POP3 Example \label{pop3-example}} Here is a minimal example (without error checking) that opens a mailbox and retrieves and prints all messages: |