diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-12-10 05:32:55 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-12-10 05:32:55 (GMT) |
commit | 186b204997166932fec475ed08bcb324ae102a30 (patch) | |
tree | 57ab07d7fe60bf47bd253fdf3d154bd5c3044f30 /Objects | |
parent | b7880b067bf06478ab6199e32afe7519c0546851 (diff) | |
download | cpython-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.c | 2 |
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) |