From d35e09700309c688e947ffabde60f28ac9d50737 Mon Sep 17 00:00:00 2001 From: Grey Li Date: Wed, 7 Jul 2021 19:24:22 +0800 Subject: [PATCH] Improve the wording of ASGI docs --- docs/deploying/asgi.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/deploying/asgi.rst b/docs/deploying/asgi.rst index 1e0517b7..39cd76b7 100644 --- a/docs/deploying/asgi.rst +++ b/docs/deploying/asgi.rst @@ -21,7 +21,7 @@ wrapping the Flask app, asgi_app = WsgiToAsgi(app) -and then serving the ``asgi_app`` with the asgi server, e.g. using +and then serving the ``asgi_app`` with the ASGI server, e.g. using `Hypercorn `_, .. sourcecode:: text