Added module references; minor grammatical fixes.
All suggested by Eric Raymond.
diff --git a/Doc/lib/libcfgparser.tex b/Doc/lib/libcfgparser.tex
index b203168..4ebc9a4 100644
--- a/Doc/lib/libcfgparser.tex
+++ b/Doc/lib/libcfgparser.tex
@@ -39,7 +39,7 @@
 \var{defaults} is given, it is initialized into the dictionairy of
 intrinsic defaults.  They keys must be strings, and the values must be 
 appropriate for the \samp{\%()s} string interpolation.  Note that
-\var{__name__} is always an intrinsic default; it's value is the 
+\var{__name__} is always an intrinsic default; its value is the 
 section name.
 \end{classdesc}
 
@@ -70,6 +70,12 @@
 \end{excdesc}
 
 
+\begin{seealso}
+  \seemodule{shlex}{Support for a creating \UNIX{} shell-like
+                    minilanguages which can be used as an alternate format
+                    for application configuration files.}
+\end{seealso}
+
 \subsection{ConfigParser Objects \label{ConfigParser-objects}}
 
 \class{ConfigParser} instances have the following methods:
diff --git a/Doc/lib/libftplib.tex b/Doc/lib/libftplib.tex
index 5ef9e7e..4014052 100644
--- a/Doc/lib/libftplib.tex
+++ b/Doc/lib/libftplib.tex
@@ -70,6 +70,10 @@
 
 
 \begin{seealso}
+  \seemodule{netrc}{Parser for the \file{.netrc} file format.  The file
+                    \file{.netrc} is typically used by FTP clients to
+                    load user authentication information before prompting
+                    the user.}
   \seetext{The file \file{Tools/scripts/ftpmirror.py}\index{ftpmirror.py}
            in the Python source distribution is a script that can mirror
            FTP sites, or portions thereof, using the \module{ftplib} module.
diff --git a/Doc/lib/libshlex.tex b/Doc/lib/libshlex.tex
index 326edcd..f33fa2a 100644
--- a/Doc/lib/libshlex.tex
+++ b/Doc/lib/libshlex.tex
@@ -1,7 +1,7 @@
 % Module and documentation by Eric S. Raymond, 21 Dec 1998 
 
 \section{\module{shlex} ---
-         Simple lexical analysis.}
+         Simple lexical analysis}
 
 \declaremodule{standard}{shlex}
 \modulesynopsis{Simple lexical analysis for \UNIX{} shell-like languages.}
@@ -21,9 +21,15 @@
 read characters from. It must be a file- or stream-like object with
 \method{read()} and \method{readline()} methods.  If no argument is given,
 input will be taken from \code{sys.stdin}.
-
 \end{classdesc}
 
+
+\begin{seealso}
+  \seemodule{ConfigParser}{Parser for configuration files similar to the
+                           Windows \file{.ini} files.}
+\end{seealso}
+
+
 \subsection{shlex Objects \label{shlex-objects}}
 
 A \class{shlex} instance has the following methods:
@@ -64,7 +70,7 @@
 \begin{memberdesc}{quotes}
 Characters that will be considered string quotes.  The token
 accumulates until the same quote is encountered again (thus, different
-quote types protect each other as in the shall.)  By default, includes
+quote types protect each other as in the shell.)  By default, includes
 \ASCII{} single and double quotes.
 \end{memberdesc}