From 087025fd33d34c3845c06412c2eb0943c3ff390c Mon Sep 17 00:00:00 2001 From: Amitay Date: Thu, 26 May 2022 10:16:24 +0300 Subject: [PATCH] fixed manual to match current Sanic app name policy (#2461) Co-authored-by: Adam Hopkins --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 316c323d73..5b96357d0f 100644 --- a/README.rst +++ b/README.rst @@ -114,7 +114,7 @@ Hello World Example from sanic import Sanic from sanic.response import json - app = Sanic("My Hello, world app") + app = Sanic("my-hello-world-app") @app.route('/') async def test(request):