summaryrefslogtreecommitdiff
path: root/Modules/_asynciomodule.c
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-02-03 17:41:43 -0800
committerTerry Jan Reedy <tjreedy@udel.edu>2018-02-03 20:41:43 -0500
commite86db34dd3b43dc9c9beb21a82cd2c3b7c4c05df (patch)
tree93595a8942b755afd2b49bc574fb7dce9a072ea1 /Modules/_asynciomodule.c
parent52f745852e49498d7dd86fd309ae57f6a7af568f (diff)
downloadcpython-git-e86db34dd3b43dc9c9beb21a82cd2c3b7c4c05df.tar.gz
[3.7] bpo-32746: Fix multiple typos (GH-5144) (GH-5520)
Fix typos found by codespell in docs, docstrings, and comments. (cherry picked from commit c3d9508ff22ece9a96892b628dd5813e2fb0cd80) Co-authored-by: Leo Arias <leo.arias@canonical.com>
Diffstat (limited to 'Modules/_asynciomodule.c')
-rw-r--r--Modules/_asynciomodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_asynciomodule.c b/Modules/_asynciomodule.c
index a5cf687d88..e82425bf2f 100644
--- a/Modules/_asynciomodule.c
+++ b/Modules/_asynciomodule.c
@@ -187,7 +187,7 @@ is_coroutine(PyObject *coro)
return _is_coroutine(coro);
}
- /* either an error has occured or
+ /* either an error has occurred or
type(coro) is in iscoroutine_typecache
*/
return has_it;