Skip to content

Commit cab4692

Browse files
Johan de JagerMariatta
authored andcommitted
Fix a typo in a comment in coroutines.py (GH-2267)
defiend -> defined
1 parent 870c286 commit cab4692

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)