fixed manual to match current Sanic app name policy (#2461)

Co-authored-by: Adam Hopkins <adam@amhopkins.com>
This commit is contained in:
Amitay 2022-05-26 10:16:24 +03:00 committed by GitHub
parent 4ee2e57ec8
commit c249004c30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -114,7 +114,7 @@ Hello World Example
from sanic import Sanic from sanic import Sanic
from sanic.response import json from sanic.response import json
app = Sanic("My Hello, world app") app = Sanic("my-hello-world-app")
@app.route('/') @app.route('/')
async def test(request): async def test(request):