summaryrefslogtreecommitdiff
path: root/Objects
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-12-10 05:32:55 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-12-10 05:32:55 +0000
commit8fd2706e1db4130305f62e3506a985da8697b21a (patch)
treec6be7014e8a0276e7fb02c8e2fdbb230308ffc6f /Objects
parent9f922927453d0352d5a78047c232ac091eb9db0b (diff)
downloadcpython-8fd2706e1db4130305f62e3506a985da8697b21a.tar.gz
Fix typos in comment and documentation
Diffstat (limited to 'Objects')
-rw-r--r--Objects/abstract.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/abstract.c b/Objects/abstract.c
index f9afece815..d838856d45 100644
--- a/Objects/abstract.c
+++ b/Objects/abstract.c
@@ -2325,7 +2325,7 @@ exit:
return result;
}
-/* Positional arguments are obj followed args. */
+/* Positional arguments are obj followed by args. */
PyObject *
_PyObject_Call_Prepend(PyObject *func,
PyObject *obj, PyObject *args, PyObject *kwargs)