From 85c35bd6155e14f5c0829a88533d13321408bda5 Mon Sep 17 00:00:00 2001 From: Frank Yu Date: Wed, 7 Jul 2021 19:26:24 +0800 Subject: [PATCH] Fix link in ASGI docs (#4191) * Fix link in ASGI docs * Improve the wording of ASGI docs Co-authored-by: Grey Li --- docs/deploying/asgi.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/deploying/asgi.rst b/docs/deploying/asgi.rst index c7e04027..39cd76b7 100644 --- a/docs/deploying/asgi.rst +++ b/docs/deploying/asgi.rst @@ -5,7 +5,7 @@ ASGI If you'd like to use an ASGI server you will need to utilise WSGI to ASGI middleware. The asgiref -[WsgiToAsgi](https://github.com/django/asgiref#wsgi-to-asgi-adapter) +`WsgiToAsgi `_ adapter is recommended as it integrates with the event loop used for Flask's :ref:`async_await` support. You can use the adapter by wrapping the Flask app, @@ -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