Skip to content

Commit 807ed8f

Browse files
committed
bug #6883 [Routing] Fix a route path in a routing example (thomasbisignani)
This PR was merged into the 2.7 branch. Discussion ---------- [Routing] Fix a route path in a routing example Hello, I found a little issue in the Routing documentation, like this example, the route path is not correct, the **blog_list** route will match when the user goes to **/blog**. This PR fixes the issue. ![routing](https://cloud.githubusercontent.com/assets/6014143/17735160/1851cc9c-6481-11e6-9c6e-942d4b3411e5.png) Commits ------- fc25add [Routing] Fix a route path in a routing example
2 parents bf2bb80 + fc25add commit 807ed8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

routing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ By adding a *default* value:
333333
334334
return $collection;
335335
336-
Now, when the user goes to ``/page``, the ``blog_list`` route will match and ``$page``
336+
Now, when the user goes to ``/blog``, the ``blog_list`` route will match and ``$page``
337337
will default to a value of ``1``.
338338

339339
.. index::

0 commit comments

Comments
 (0)