summaryrefslogtreecommitdiffstats
path: root/Doc/ext
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2002-12-17 18:14:21 (GMT)
committerGreg Ward <gward@python.net>2002-12-17 18:14:21 (GMT)
commit1d5d8cf61f03964e0d24eda6c0a9f853fa2ac2ad (patch)
tree74284077735bd5a84ad9205137b1ff8dd2a2a28c /Doc/ext
parenta080be8b63078eec95c0483b619d94ddf54c3244 (diff)
downloadcpython-1d5d8cf61f03964e0d24eda6c0a9f853fa2ac2ad.zip
cpython-1d5d8cf61f03964e0d24eda6c0a9f853fa2ac2ad.tar.gz
cpython-1d5d8cf61f03964e0d24eda6c0a9f853fa2ac2ad.tar.bz2
Typo fix.
Diffstat (limited to 'Doc/ext')
-rw-r--r--Doc/ext/newtypes.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/ext/newtypes.tex b/Doc/ext/newtypes.tex
index 4763d18..409ebc8 100644
--- a/Doc/ext/newtypes.tex
+++ b/Doc/ext/newtypes.tex
@@ -43,7 +43,7 @@ static PyTypeObject noddy_NoddyType;
This names the type object that will be defining further down in the
file. It can't be defined here because its definition has to refer to
-functions that have no yet been defined, but we need to be able to
+functions that have not yet been defined, but we need to be able to
refer to it, hence the declaration.
\begin{verbatim}