diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-02 13:06:09 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-02 13:06:09 (GMT) |
commit | c72e66a0489ee53aaf89c677c5b709d30b359532 (patch) | |
tree | daa871e7fdabf80f5da22dd1a5d3dc33b5efce52 /Modules/itertoolsmodule.c | |
parent | a5ad9da50422a5ce2f80e05b816e74c0e004e247 (diff) | |
download | cpython-c72e66a0489ee53aaf89c677c5b709d30b359532.zip cpython-c72e66a0489ee53aaf89c677c5b709d30b359532.tar.gz cpython-c72e66a0489ee53aaf89c677c5b709d30b359532.tar.bz2 |
Issue #25523: Backported a-to-an corrections.
Diffstat (limited to 'Modules/itertoolsmodule.c')
-rw-r--r-- | Modules/itertoolsmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/itertoolsmodule.c b/Modules/itertoolsmodule.c index 394bbaf..c3cf1c0 100644 --- a/Modules/itertoolsmodule.c +++ b/Modules/itertoolsmodule.c @@ -1410,7 +1410,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) |