summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2006-02-22 11:46:55 (GMT)
committerGeorg Brandl <georg@python.org>2006-02-22 11:46:55 (GMT)
commitb518d8c7d7a036008945ae11226ab2cfe14164d0 (patch)
tree20dd3ec91ad42055feca159d09fb0a96b60a6381 /Doc
parent418a1ef0895e826c65d4113be5d86891c199e15d (diff)
downloadcpython-b518d8c7d7a036008945ae11226ab2cfe14164d0.zip
cpython-b518d8c7d7a036008945ae11226ab2cfe14164d0.tar.gz
cpython-b518d8c7d7a036008945ae11226ab2cfe14164d0.tar.bz2
Fix casing of function names.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/api/concrete.tex6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/api/concrete.tex b/Doc/api/concrete.tex
index 583a548..3b12b5c 100644
--- a/Doc/api/concrete.tex
+++ b/Doc/api/concrete.tex
@@ -3005,9 +3005,9 @@ either the abstract object protocol (including
or the abstract number protocol (including
\cfunction{PyNumber_Add()}, \cfunction{PyNumber_Subtract()},
\cfunction{PyNumber_Or()}, \cfunction{PyNumber_Xor()},
-\cfunction{PyNumber_InplaceAdd()}, \cfunction{PyNumber_InplaceSubtract()},
-\cfunction{PyNumber_InplaceOr()}, and \cfunction{PyNumber_InplaceXor()}).
-Note, \cfunction{PyNumber_InplaceSubtract()} is also useful clearing
+\cfunction{PyNumber_InPlaceAdd()}, \cfunction{PyNumber_InPlaceSubtract()},
+\cfunction{PyNumber_InPlaceOr()}, and \cfunction{PyNumber_InPlaceXor()}).
+Note, \cfunction{PyNumber_InPlaceSubtract()} is also useful clearing
clearing a set (\code{s-=s}).
\begin{ctypedesc}{PySetObject}