From: Mariatta Date: Sat, 24 Jun 2017 05:50:31 +0000 (-0700) Subject: [3.5] Fix a typo in a comment in coroutines.py (GH-2267) (GH-2371) X-Git-Tag: v3.5.4rc1~48 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3e8d6f564395b668bad7ff9bf55703eaa6d1b888;p=python [3.5] Fix a typo in a comment in coroutines.py (GH-2267) (GH-2371) defiend -> defined (cherry picked from commit cab469245d7635447c5e04fa6ed860b067dfc26b) --- diff --git a/Lib/asyncio/coroutines.py b/Lib/asyncio/coroutines.py index 5bdeceb9b1..488e423672 100644 --- a/Lib/asyncio/coroutines.py +++ b/Lib/asyncio/coroutines.py @@ -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