Skip to content

Commit 20f1029

Browse files
authored
[3.6] Fix a typo in a comment in coroutines.py (GH-2267) (GH-2370)
defiend -> defined (cherry picked from commit cab4692)
1 parent bd570f4 commit 20f1029

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/asyncio/coroutines.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ def coroutine(func):
197197
"""
198198
if _inspect_iscoroutinefunction(func):
199199
# In Python 3.5 that's all we need to do for coroutines
200-
# defiend with "async def".
200+
# defined with "async def".
201201
# Wrapping in CoroWrapper will happen via
202202
# 'sys.set_coroutine_wrapper' function.
203203
return func

0 commit comments

Comments
 (0)