Commit cab46924 authored by Johan de Jager's avatar Johan de Jager Committed by Mariatta

Fix a typo in a comment in coroutines.py (GH-2267)

defiend -> defined
parent 870c286e
......@@ -197,7 +197,7 @@ def coroutine(func):
"""
if _inspect_iscoroutinefunction(func):
# 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
# 'sys.set_coroutine_wrapper' function.
return func
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment