summaryrefslogtreecommitdiff
path: root/Doc/lib/libbasehttp.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-07-14 02:50:55 +0000
committerFred Drake <fdrake@acm.org>2001-07-14 02:50:55 +0000
commit8ee679f0ce8b14a5ff9de397280b63db6e142d6d (patch)
treede085aaf3491ea3570b28a80fec8e2f6e6a70194 /Doc/lib/libbasehttp.tex
parent4124a0b343dcac70bbdc853d190e269a0d19e830 (diff)
downloadcpython-git-8ee679f0ce8b14a5ff9de397280b63db6e142d6d.tar.gz
Minor changes to match the style guide.
Diffstat (limited to 'Doc/lib/libbasehttp.tex')
-rw-r--r--Doc/lib/libbasehttp.tex8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/lib/libbasehttp.tex b/Doc/lib/libbasehttp.tex
index f78b77903f..f867f4e6ec 100644
--- a/Doc/lib/libbasehttp.tex
+++ b/Doc/lib/libbasehttp.tex
@@ -12,14 +12,14 @@
\index{httpd}
This module defines two classes for implementing HTTP servers
-(web servers). Usually, this module isn't used directly, but is used
-as a basis for building functioning web servers. See the
+(Web servers). Usually, this module isn't used directly, but is used
+as a basis for building functioning Web servers. See the
\module{SimpleHTTPServer}\refstmodindex{SimpleHTTPServer} and
\refmodule{CGIHTTPServer}\refstmodindex{CGIHTTPServer} modules.
The first class, \class{HTTPServer}, is a
-\class{SocketServer.TCPServer} subclass. It creates and listens at the
-web socket, dispatching the requests to a handler. Code to create and
+\class{SocketServer.TCPServer} subclass. It creates and listens at the
+HTTP socket, dispatching the requests to a handler. Code to create and
run the server looks like this:
\begin{verbatim}