[Python-checkins] r72396 - python/branches/py3k/Doc/c-api/capsule.rst

georg.brandl python-checkins at python.org
Wed May 6 10:32:17 CEST 2009


Author: georg.brandl
Date: Wed May  6 10:32:17 2009
New Revision: 72396

Log:
#5946: fix speling.

Modified:
   python/branches/py3k/Doc/c-api/capsule.rst

Modified: python/branches/py3k/Doc/c-api/capsule.rst
==============================================================================
--- python/branches/py3k/Doc/c-api/capsule.rst	(original)
+++ python/branches/py3k/Doc/c-api/capsule.rst	Wed May  6 10:32:17 2009
@@ -71,7 +71,7 @@
 
    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 @@
 
    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 @@
 
    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)


More information about the Python-checkins mailing list