[Python-checkins] cpython: Fix typo

raymond.hettinger python-checkins at python.org
Fri Jan 13 01:25:31 EST 2017


https://hg.python.org/cpython/rev/3493e2a109a5
changeset:   106120:3493e2a109a5
parent:      106118:ec3b08b361c0
user:        Raymond Hettinger <python at rcn.com>
date:        Thu Jan 12 22:25:25 2017 -0800
summary:
  Fix typo

files:
  Modules/_collectionsmodule.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c
--- a/Modules/_collectionsmodule.c
+++ b/Modules/_collectionsmodule.c
@@ -2235,7 +2235,7 @@
 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)

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list