diff options
author | Martin Panter <vadmium+py@gmail.com> | 2017-01-14 08:23:08 +0000 |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2017-01-14 08:23:08 +0000 |
commit | 536d70ed331c3192578b73b2b243bc1dbbd8ec2a (patch) | |
tree | a2a1ac1d395d2c4cb632c262df98968cc7ddb23f /Modules/_collectionsmodule.c | |
parent | b71c0956d0904cfdc271cd10d40385c730cf8bcb (diff) | |
download | cpython-git-536d70ed331c3192578b73b2b243bc1dbbd8ec2a.tar.gz |
Fix grammar, typos and markup in documentation and code comments
* Indent versionchanged at method level, not class level
* Mark up ``--help`` to avoid generating an en dash
* Use forward slash in Unix command line with a dollar sign ($) prompt
Diffstat (limited to 'Modules/_collectionsmodule.c')
-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 10fbcfe6b9..ac81680e1b 100644 --- a/Modules/_collectionsmodule.c +++ b/Modules/_collectionsmodule.c @@ -2169,7 +2169,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) |