]> granicus.if.org Git - python/commitdiff
Typo repair.
authorTim Peters <tim.peters@gmail.com>
Tue, 8 Apr 2003 18:47:21 +0000 (18:47 +0000)
committerTim Peters <tim.peters@gmail.com>
Tue, 8 Apr 2003 18:47:21 +0000 (18:47 +0000)
Include/classobject.h

index 1328c274d5421f17d7b4c7bdd6812788810e584a..8f8db7d813031a7bde3c60355fbe26359cb453aa 100644 (file)
@@ -58,10 +58,10 @@ PyAPI_FUNC(PyObject *) PyMethod_Class(PyObject *);
  * value associated with name in the dict in which name was found.
  * The point of this routine is that it never calls arbitrary Python
  * code, so is always "safe":  all it does is dict lookups.  The function
- * can't fail, never sets an exceptionm, and NULL is not an error (it just
+ * can't fail, never sets an exception, and NULL is not an error (it just
  * means "not found").
  */
-PyAPI_FUNC(PyObject *)_PyInstance_Lookup(PyObject *pinst, PyObject *name);
+PyAPI_FUNC(PyObject *) _PyInstance_Lookup(PyObject *pinst, PyObject *name);
 
 /* Macros for direct access to these values. Type checks are *not*
    done, so use with care. */