From 5c208cd210c60baf1d3345e0ec0c5e668590b30c Mon Sep 17 00:00:00 2001 From: xiangxli Date: Wed, 26 Jun 2019 22:06:03 +0800 Subject: [PATCH] Fix line 276 typo (#3871) --- aiohttp/web.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiohttp/web.py b/aiohttp/web.py index 1fc9dae301..b6ea55b3f4 100644 --- a/aiohttp/web.py +++ b/aiohttp/web.py @@ -273,7 +273,7 @@ async def _run_app(app: Union[Application, Awaitable[Application]], *, handle_signals: bool=True, reuse_address: Optional[bool]=None, reuse_port: Optional[bool]=None) -> None: - # A internal functio to actually do all dirty job for application running + # A internal function to actually do all dirty job for application running if asyncio.iscoroutine(app): app = await app # type: ignore