From f8f543057a9feb5330784401b5fed168c5288e36 Mon Sep 17 00:00:00 2001 From: podhmo Date: Wed, 11 Nov 2020 18:10:33 +0900 Subject: [PATCH] fix code example, in async.md (#1388) --- docs/async.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/async.md b/docs/async.md index 1cd51b00..3238097a 100644 --- a/docs/async.md +++ b/docs/async.md @@ -169,7 +169,7 @@ from starlette.responses import HTMLResponse from starlette.routing import Route -async def hello(): +async def hello(request): return HTMLResponse("Hello World!")