summaryrefslogtreecommitdiffstats
path: root/Doc/ext
diff options
context:
space:
mode:
authorJohannes Gijsbers <jlg@dds.nl>2004-09-11 16:50:06 (GMT)
committerJohannes Gijsbers <jlg@dds.nl>2004-09-11 16:50:06 (GMT)
commitd345225ae51874b036662e4d1ed0f3f25257661e (patch)
tree721ddd44c37bf8871d53d118b7ef8f83a8d0d228 /Doc/ext
parent7a8c43ee6a1f9c50bec8cc5234eff8b1d5e61088 (diff)
downloadcpython-d345225ae51874b036662e4d1ed0f3f25257661e.zip
cpython-d345225ae51874b036662e4d1ed0f3f25257661e.tar.gz
cpython-d345225ae51874b036662e4d1ed0f3f25257661e.tar.bz2
Patch #1026384: fix two common typo's:
- accomodate -> accommodate - occured -> occurred Thanks George Yoshida!
Diffstat (limited to 'Doc/ext')
-rw-r--r--Doc/ext/embedding.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/ext/embedding.tex b/Doc/ext/embedding.tex
index 686004c..58ec5ca 100644
--- a/Doc/ext/embedding.tex
+++ b/Doc/ext/embedding.tex
@@ -113,7 +113,7 @@ When embedding Python, the interface code does:
\end{enumerate}
As you can see, the data conversion steps are simply swapped to
-accomodate the different direction of the cross-language transfer.
+accommodate the different direction of the cross-language transfer.
The only difference is the routine that you call between both
data conversions. When extending, you call a C routine, when
embedding, you call a Python routine.