diff options
author | Greg Ward <gward@python.net> | 2002-06-21 12:33:08 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2002-06-21 12:33:08 (GMT) |
commit | 6f45eeb0f3258ee6482f0984622bcc1052ba36bd (patch) | |
tree | 5b594ac1650038b7031009f67e1add2aed915655 /Doc | |
parent | 10f36d9f0b455e0b5b0b61173037d7e13e3fd94d (diff) | |
download | cpython-6f45eeb0f3258ee6482f0984622bcc1052ba36bd.zip cpython-6f45eeb0f3258ee6482f0984622bcc1052ba36bd.tar.gz cpython-6f45eeb0f3258ee6482f0984622bcc1052ba36bd.tar.bz2 |
Typo fix.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/ext/embedding.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/ext/embedding.tex b/Doc/ext/embedding.tex index 77fd451..e971fe8 100644 --- a/Doc/ext/embedding.tex +++ b/Doc/ext/embedding.tex @@ -189,7 +189,7 @@ as its argument, which is constructed using the Once the script is loaded, the name we're looking for is retrieved using \cfunction{PyObject_GetAttrString()}. If the name exists, and -the object retunred is callable, you can safely assume that it is a +the object returned is callable, you can safely assume that it is a function. The program then proceeds by constructing a tuple of arguments as normal. The call to the Python function is then made with: |