From 4be178e010900e0689f19a4a2d3e0443c7d6d0d6 Mon Sep 17 00:00:00 2001 From: Riccardo Grieco Date: Mon, 1 Sep 2025 15:33:43 +0200 Subject: [PATCH] Fix typo in event loop documentation Simple fix of repeated word in docs --- docs/how_to_guides/event_loop.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/how_to_guides/event_loop.rst b/docs/how_to_guides/event_loop.rst index 38a974c1..4ffdab58 100644 --- a/docs/how_to_guides/event_loop.rst +++ b/docs/how_to_guides/event_loop.rst @@ -32,7 +32,7 @@ new loop separate from the Quart loop for ThirdParty, Controlling the event loop -------------------------- -It is the ASGI server running running Quart that owns the event loop +It is the ASGI server running Quart that owns the event loop that Quart runs within, by default the server is Hypercorn. Both Quart and Hypercorn allow the loop to be specified, the Quart shortcut in development is to pass the loop to the ``app.run`` method,