diff options
author | Raymond Hettinger <python@rcn.com> | 2017-01-13 06:25:25 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2017-01-13 06:25:25 (GMT) |
commit | a24dca6a90774ed47fcb37bbe4315a7f8121e4a8 (patch) | |
tree | a13a1d5a290c82b0c0b1460c81b459fa8c0ed10d /Modules | |
parent | f810d041dcf65dce04ed6851470f316057be5dd9 (diff) | |
download | cpython-a24dca6a90774ed47fcb37bbe4315a7f8121e4a8.zip cpython-a24dca6a90774ed47fcb37bbe4315a7f8121e4a8.tar.gz cpython-a24dca6a90774ed47fcb37bbe4315a7f8121e4a8.tar.bz2 |
Fix typo
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_collectionsmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c index b8b7584..e8131ad 100644 --- a/Modules/_collectionsmodule.c +++ b/Modules/_collectionsmodule.c @@ -2235,7 +2235,7 @@ static PyTypeObject defdict_type = { PyDoc_STRVAR(_count_elements_doc, "_count_elements(mapping, iterable) -> None\n\ \n\ -Count elements in the iterable, updating the mappping"); +Count elements in the iterable, updating the mapping"); static PyObject * _count_elements(PyObject *self, PyObject *args) |