diff options
author | Georg Brandl <georg@python.org> | 2009-05-06 08:32:17 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-05-06 08:32:17 (GMT) |
commit | 30f4a4c50517e551ed1af2a2b9e817ef3e667656 (patch) | |
tree | adb8ac9906619b1b5a6fcc27169f0f5bd34ee2bf /Doc/c-api/capsule.rst | |
parent | 4eea2a390b1152e3317c175f87b7371d3f2d9cd9 (diff) | |
download | cpython-30f4a4c50517e551ed1af2a2b9e817ef3e667656.zip cpython-30f4a4c50517e551ed1af2a2b9e817ef3e667656.tar.gz cpython-30f4a4c50517e551ed1af2a2b9e817ef3e667656.tar.bz2 |
#5946: fix speling.
Diffstat (limited to 'Doc/c-api/capsule.rst')
-rw-r--r-- | Doc/c-api/capsule.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/c-api/capsule.rst b/Doc/c-api/capsule.rst index e865b5c..2939314 100644 --- a/Doc/c-api/capsule.rst +++ b/Doc/c-api/capsule.rst @@ -71,7 +71,7 @@ Refer to :ref:`using-capsules` for more information on using these objects. It is legal for a capsule to have a *NULL* destructor. This makes a *NULL* return code somewhat ambiguous; use :cfunc:`PyCapsule_IsValid` or - :cfunc:`PyErr_Occurred` to disambugate. + :cfunc:`PyErr_Occurred` to disambiguate. .. cfunction:: void* PyCapsule_GetContext(PyObject *capsule) @@ -81,7 +81,7 @@ Refer to :ref:`using-capsules` for more information on using these objects. It is legal for a capsule to have a *NULL* context. This makes a *NULL* return code somewhat ambiguous; use :cfunc:`PyCapsule_IsValid` or - :cfunc:`PyErr_Occurred` to disambugate. + :cfunc:`PyErr_Occurred` to disambiguate. .. cfunction:: const char* PyCapsule_GetName(PyObject *capsule) @@ -91,7 +91,7 @@ Refer to :ref:`using-capsules` for more information on using these objects. It is legal for a capsule to have a *NULL* name. This makes a *NULL* return code somewhat ambiguous; use :cfunc:`PyCapsule_IsValid` or - :cfunc:`PyErr_Occurred` to disambugate. + :cfunc:`PyErr_Occurred` to disambiguate. .. cfunction:: void* PyCapsule_Import(const char *name, int no_block) |