summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libcgi.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1999-01-18 15:46:02 (GMT)
committerFred Drake <fdrake@acm.org>1999-01-18 15:46:02 (GMT)
commit7eca8e5017d1c940e83901f02af3b683e42c731c (patch)
treea49de47cbcfd29c53eda54fe0fd4deb37a08da9a /Doc/lib/libcgi.tex
parent36911a1ca950e6843082657dab62c972cc02bbf9 (diff)
downloadcpython-7eca8e5017d1c940e83901f02af3b683e42c731c.zip
cpython-7eca8e5017d1c940e83901f02af3b683e42c731c.tar.gz
cpython-7eca8e5017d1c940e83901f02af3b683e42c731c.tar.bz2
Fix typo spotted by Jeff MacDonald <jam@ans.net>.
Diffstat (limited to 'Doc/lib/libcgi.tex')
-rw-r--r--Doc/lib/libcgi.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libcgi.tex b/Doc/lib/libcgi.tex
index e4a8e21..54fbd69 100644
--- a/Doc/lib/libcgi.tex
+++ b/Doc/lib/libcgi.tex
@@ -150,7 +150,7 @@ multiple files from one field (using a recursive
a dictionary-like \class{FieldStorage} item. This can be determined
by testing its \member{type} attribute, which should be
\mimetype{multipart/form-data} (or perhaps another MIME type matching
-\mimetype{multipart/*}). It this case, it can be iterated over
+\mimetype{multipart/*}). In this case, it can be iterated over
recursively just like the top-level form object.
When a form is submitted in the ``old'' format (as the query string or
@@ -276,7 +276,7 @@ installed; usually this is in a directory \file{cgi-bin} in the server tree.
Make sure that your script is readable and executable by ``others''; the
\UNIX{} file mode should be \code{0755} octal (use \samp{chmod 0755
-filename}). Make sure that the first line of the script contains
+\var{filename}}). Make sure that the first line of the script contains
\code{\#!} starting in column 1 followed by the pathname of the Python
interpreter, for instance: