Skip to content

Commit 675acb9

Browse files
committed
minor #12026 Update spelling in slash_in_parameter.rst (nasAtchia)
This PR was submitted for the 4.3 branch but it was merged into the 3.4 branch instead (closes #12026). Discussion ---------- Update spelling in slash_in_parameter.rst <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/roadmap for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `master` for features of unreleased versions). --> Commits ------- 050affd Update spelling in slash_in_parameter.rst
2 parents bb6ed97 + 050affd commit 675acb9

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
@@ -85,7 +85,7 @@ That's it! Now, the ``{token}`` parameter can contain the ``/`` character.
8585
use the ``.+`` requirement for the parameters that allow slashes. For example,
8686
if the pattern is ``/share/{token}.{_format}`` and ``{token}`` allows any
8787
character, the ``/share/foo/bar.json`` URL will consider ``foo/bar.json``
88-
as the token and the format will be empty. This can be solved replacing the
88+
as the token and the format will be empty. This can be solved by replacing the
8989
``.+`` requirement by ``[^.]+`` to allow any character except dots.
9090

9191
.. note::

0 commit comments

Comments
 (0)