summaryrefslogtreecommitdiff
path: root/Modules/itertoolsmodule.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-11-02 14:44:29 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2015-11-02 14:44:29 +0200
commit4a7c03aab455613e9ba898b7cae73459fadd57ac (patch)
treed09ea360154f3e045e2f5a76a172b0e6417fc957 /Modules/itertoolsmodule.c
parentdf8f5b56c9dc5e950f39ed0221212256a39c1835 (diff)
parentf51d715845dfede2803ef7a2e6ea4e2a03f18486 (diff)
downloadcpython-git-4a7c03aab455613e9ba898b7cae73459fadd57ac.tar.gz
Issue #25523: Merge a-to-an corrections from 3.5.
Diffstat (limited to 'Modules/itertoolsmodule.c')
-rw-r--r--Modules/itertoolsmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/itertoolsmodule.c b/Modules/itertoolsmodule.c
index ff7867d5bc..2e7cc4fc57 100644
--- a/Modules/itertoolsmodule.c
+++ b/Modules/itertoolsmodule.c
@@ -1743,7 +1743,7 @@ PyDoc_STRVAR(starmap_doc,
"starmap(function, sequence) --> starmap object\n\
\n\
Return an iterator whose values are returned from the function evaluated\n\
-with a argument tuple taken from the given sequence.");
+with an argument tuple taken from the given sequence.");
static PyTypeObject starmap_type = {
PyVarObject_HEAD_INIT(NULL, 0)