From a24dca6a90774ed47fcb37bbe4315a7f8121e4a8 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Thu, 12 Jan 2017 22:25:25 -0800 Subject: [PATCH] Fix typo --- Modules/_collectionsmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c index b8b7584282a..e8131ad6a00 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)