Skip to content

Commit

Permalink
fix(docs): fixed typo in routing overview (#3555)
Browse files Browse the repository at this point in the history
Fixed typo, changing "/`" to "/"

(cherry picked from commit 8a5d164)
  • Loading branch information
PossiblePanda authored and provinzkraut committed Jun 21, 2024
1 parent d9d1f2b commit ea90175
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/usage/routing/overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ea90175

Please sign in to comment.