Skip to content

Commit a106f2f

Browse files
authored
Update spelling in slash_in_parameter.rst
1 parent 60f9821 commit a106f2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

routing/slash_in_parameter.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ That's it! Now, the ``{token}`` parameter can contain the ``/`` character.
8787
use the ``.+`` requirement for the parameters that allow slashes. For example,
8888
if the pattern is ``/share/{token}.{_format}`` and ``{token}`` allows any
8989
character, the ``/share/foo/bar.json`` URL will consider ``foo/bar.json``
90-
as the token and the format will be empty. This can be solved replacing the
90+
as the token and the format will be empty. This can be solved by replacing the
9191
``.+`` requirement by ``[^.]+`` to allow any character except dots.
9292

9393
.. note::

0 commit comments

Comments
 (0)