From 20f1029584a091959ead30b7f7ef238668745aa0 Mon Sep 17 00:00:00 2001 From: Mariatta Date: Fri, 23 Jun 2017 22:44:57 -0700 Subject: [PATCH] [3.6] Fix a typo in a comment in coroutines.py (GH-2267) (GH-2370) defiend -> defined (cherry picked from commit cab469245d7635447c5e04fa6ed860b067dfc26b) --- Lib/asyncio/coroutines.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/asyncio/coroutines.py b/Lib/asyncio/coroutines.py index 08e94412b3..b2adaadfc2 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 -- 2.50.1