From f9ee9c0faea367c0322b9a14c6c5c3d3de3861e0 Mon Sep 17 00:00:00 2001 From: Tyler Harms Date: Wed, 15 Oct 2014 18:09:05 -0500 Subject: [PATCH] Fixes route demo in Router documentation It looks like the `/docs` route is supposed to be nested under the `/contact` route but the comment didn't reflect this. --- quick_tour/the_router.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quick_tour/the_router.rst b/quick_tour/the_router.rst index 498ba76e..6e7a2402 100644 --- a/quick_tour/the_router.rst +++ b/quick_tour/the_router.rst @@ -47,7 +47,7 @@ other examples: /about # /about Route /contact # /contact Route /team # /contact/team Route - /docs # /docs Route + /docs # /contact/docs Route OK, you got it? The only thing the Router has to do is prefix the route with a specific path prefix and load that document. In the case of the SimpleCmsBundle,