summaryrefslogtreecommitdiffstats
path: root/Doc/ext
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2002-11-05 16:52:50 (GMT)
committerFred Drake <fdrake@acm.org>2002-11-05 16:52:50 (GMT)
commitcc6cc5ddff06050e430d2d08a594ca8781bb7791 (patch)
treed9ccc36108899908db9f94b829e0988e76e82f30 /Doc/ext
parentf8ca8364c9682df468a982a5f29831b76521bb6d (diff)
downloadcpython-cc6cc5ddff06050e430d2d08a594ca8781bb7791.zip
cpython-cc6cc5ddff06050e430d2d08a594ca8781bb7791.tar.gz
cpython-cc6cc5ddff06050e430d2d08a594ca8781bb7791.tar.bz2
Fix minor markup nits.
Diffstat (limited to 'Doc/ext')
-rw-r--r--Doc/ext/windows.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/ext/windows.tex b/Doc/ext/windows.tex
index 5f7c947..69d0cd9 100644
--- a/Doc/ext/windows.tex
+++ b/Doc/ext/windows.tex
@@ -192,7 +192,7 @@ Hello, world
list. Select ``Multithreaded DLL'' from the ``Use run-time
library:'' dropdown list.
- You should now create the file spam.def as instructed in the
+ You should now create the file \file{spam.def} as instructed in the
previous section. Then chose the \menuselection{Insert \sub Files
into Project} dialog. Set the pattern to \code{*.*} and select
both \file{spam.c} and \file{spam.def} and click OK. (Inserting
@@ -218,7 +218,7 @@ and add the following to the module initialization function:
MyObject_Type.ob_type = &PyType_Type;
\end{verbatim}
-Refer to section 3 of the
+Refer to section~3 of the
\citetitle[http://www.python.org/doc/FAQ.html]{Python FAQ} for details
on why you must do this.