diff options
author | Greg Ward <gward@python.net> | 2002-12-17 18:14:21 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2002-12-17 18:14:21 (GMT) |
commit | 1d5d8cf61f03964e0d24eda6c0a9f853fa2ac2ad (patch) | |
tree | 74284077735bd5a84ad9205137b1ff8dd2a2a28c /Doc/ext | |
parent | a080be8b63078eec95c0483b619d94ddf54c3244 (diff) | |
download | cpython-1d5d8cf61f03964e0d24eda6c0a9f853fa2ac2ad.zip cpython-1d5d8cf61f03964e0d24eda6c0a9f853fa2ac2ad.tar.gz cpython-1d5d8cf61f03964e0d24eda6c0a9f853fa2ac2ad.tar.bz2 |
Typo fix.
Diffstat (limited to 'Doc/ext')
-rw-r--r-- | Doc/ext/newtypes.tex | 2 |
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} |