summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-12-10 05:32:55 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-12-10 05:32:55 (GMT)
commit186b204997166932fec475ed08bcb324ae102a30 (patch)
tree57ab07d7fe60bf47bd253fdf3d154bd5c3044f30 /Objects
parentb7880b067bf06478ab6199e32afe7519c0546851 (diff)
downloadcpython-186b204997166932fec475ed08bcb324ae102a30.zip
cpython-186b204997166932fec475ed08bcb324ae102a30.tar.gz
cpython-186b204997166932fec475ed08bcb324ae102a30.tar.bz2
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 f9afece..d838856 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)