From 8a5d164098540ade78c238aab07c867eeb702a26 Mon Sep 17 00:00:00 2001 From: PossiblePanda <85448494+PossiblePanda@users.noreply.github.com> Date: Sun, 9 Jun 2024 19:26:27 -0400 Subject: [PATCH] fix(docs): fixed typo in routing overview (#3555) Fixed typo, changing "/`" to "/" --- docs/usage/routing/overview.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/usage/routing/overview.rst b/docs/usage/routing/overview.rst index a2494b6aea..e462ded15d 100644 --- a/docs/usage/routing/overview.rst +++ b/docs/usage/routing/overview.rst @@ -260,7 +260,7 @@ The handler function will receive all requests with an url that begins with ``/s :class: info If we are sending a request to the above with the url ``/some/sub-path``, the handler will be invoked and - the value of ``scope["path"]`` will equal ``"/`"``. If we send a request to ``/some/sub-path/abc``, it will also be + the value of ``scope["path"]`` will equal ``"/"``. If we send a request to ``/some/sub-path/abc``, it will also be invoked,and ``scope["path"]`` will equal ``"/abc"``. Mounting is especially useful when you need to combine components of other ASGI applications - for example, for third