fix code example, in async.md (#1388)

This commit is contained in:
podhmo 2020-11-11 18:10:33 +09:00 committed by GitHub
parent ceccb964e6
commit f8f543057a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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!")