[3.6] Fix a typo in a comment in coroutines.py (GH-2267) (GH-2370)

defiend -> defined
(cherry picked from commit cab469245d)
This commit is contained in:
Mariatta 2017-06-23 22:44:57 -07:00 committed by GitHub
parent bd570f4211
commit 20f1029584

View file

@ -197,7 +197,7 @@ def coroutine(func):
""" """
if _inspect_iscoroutinefunction(func): if _inspect_iscoroutinefunction(func):
# In Python 3.5 that's all we need to do for coroutines # In Python 3.5 that's all we need to do for coroutines
# defiend with "async def". # defined with "async def".
# Wrapping in CoroWrapper will happen via # Wrapping in CoroWrapper will happen via
# 'sys.set_coroutine_wrapper' function. # 'sys.set_coroutine_wrapper' function.
return func return func