summaryrefslogtreecommitdiff
path: root/Objects/abstract.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-06-12 17:02:10 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2016-06-12 17:02:10 +0300
commite5585ad97cb7527c73b3b758df87c8b982ceb8de (patch)
treee938a5960e9f62750ab07ba001908b5df976dc23 /Objects/abstract.c
parent47b468c23e29ff9d5d7b653fb31818c914ba96d9 (diff)
downloadcpython-e5585ad97cb7527c73b3b758df87c8b982ceb8de.tar.gz
Comment fixes extracted from patch by Demur Rumed.
Diffstat (limited to 'Objects/abstract.c')
-rw-r--r--Objects/abstract.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/abstract.c b/Objects/abstract.c
index 12dd6a16ce..8ca6933226 100644
--- a/Objects/abstract.c
+++ b/Objects/abstract.c
@@ -2132,7 +2132,7 @@ _Py_CheckFunctionResult(PyObject *func, PyObject *result, const char *where)
"%s returned NULL without setting an error",
where);
#ifdef Py_DEBUG
- /* Ensure that the bug is catched in debug mode */
+ /* Ensure that the bug is caught in debug mode */
Py_FatalError("a function returned NULL without setting an error");
#endif
return NULL;