From c249004c30bc9cfa44430512e93951171b58f4e0 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 316c323d..5b96357d 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):