summaryrefslogtreecommitdiff
path: root/Objects
diff options
context:
space:
mode:
authorWalter Dörwald <walter@livinglogic.de>2005-11-02 08:57:11 +0000
committerWalter Dörwald <walter@livinglogic.de>2005-11-02 08:57:11 +0000
commitfcc46ec0e707ce6c2666839fe7863c5b3c731a2c (patch)
tree69d11030e525d13682bf10ed33d6deef992b4a6f /Objects
parent6d92d4e42010389d8b5f6a4aef5e3eae381b78d8 (diff)
downloadcpython-fcc46ec0e707ce6c2666839fe7863c5b3c731a2c.tar.gz
Fix typo in comment.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/unicodeobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index cac6a2d0ae..2a2829f2db 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -3035,7 +3035,7 @@ static PyObject *charmapencode_lookup(Py_UNICODE c, PyObject *mapping)
space is available. Return a new reference to the object that
was put in the output buffer, or Py_None, if the mapping was undefined
(in which case no character was written) or NULL, if a
- reallocation error ocurred. The called must decref the result */
+ reallocation error ocurred. The caller must decref the result */
static
PyObject *charmapencode_output(Py_UNICODE c, PyObject *mapping,
PyObject **outobj, int *outpos)