summaryrefslogtreecommitdiffstats
path: root/Doc/ext
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2002-12-17 23:27:41 (GMT)
committerGreg Ward <gward@python.net>2002-12-17 23:27:41 (GMT)
commit3ebf56c60f07cd53b1199c604f1f6d3dd4427513 (patch)
tree0a4c7efeb16dbd613bc68e08554e7a1858d45050 /Doc/ext
parentae63756bf8e03e736260ae22efcc3e656bc6bce2 (diff)
downloadcpython-3ebf56c60f07cd53b1199c604f1f6d3dd4427513.zip
cpython-3ebf56c60f07cd53b1199c604f1f6d3dd4427513.tar.gz
cpython-3ebf56c60f07cd53b1199c604f1f6d3dd4427513.tar.bz2
Two more typo fixes.
Diffstat (limited to 'Doc/ext')
-rw-r--r--Doc/ext/newtypes.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/ext/newtypes.tex b/Doc/ext/newtypes.tex
index 409ebc8..a82cd22 100644
--- a/Doc/ext/newtypes.tex
+++ b/Doc/ext/newtypes.tex
@@ -314,7 +314,7 @@ Try to choose something that will be helpful in such a situation!
\end{verbatim}
These fields tell the runtime how much memory to allocate when new
-objects of this typed are created. Python has some builtin support
+objects of this type are created. Python has some builtin support
for variable length structures (think: strings, lists) which is where
the \member{tp_itemsize} field comes in. This will be dealt with
later.
@@ -537,7 +537,7 @@ that must be met:
\item The name of the attributes must be known when
\cfunction{PyType_Ready()} is called.
- \item No special processing is need to record that an attribute
+ \item No special processing is needed to record that an attribute
was looked up or set, nor do actions need to be taken based
on the value.
\end{enumerate}