From: Johan de Jager Date: Sat, 24 Jun 2017 05:18:54 +0000 (+0200) Subject: Fix a typo in a comment in coroutines.py (GH-2267) X-Git-Tag: v3.7.0a1~529 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cab469245d7635447c5e04fa6ed860b067dfc26b;p=thirdparty%2FPython%2Fcpython.git Fix a typo in a comment in coroutines.py (GH-2267) defiend -> defined --- diff --git a/Lib/asyncio/coroutines.py b/Lib/asyncio/coroutines.py index 08e94412b33b..b2adaadfc2cd 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