From b78ae51dd1c51d039a32be7eed34c0af2d47e08b Mon Sep 17 00:00:00 2001 From: Rick West Date: Sat, 13 Jan 2018 09:27:52 +0000 Subject: [PATCH] Update routing.rst Add trailing comma after last item of multiline array as suggested by https://github.com/symfony/symfony-docs/issues/8325 --- routing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routing.rst b/routing.rst index b1a14956458..b012a70a260 100644 --- a/routing.rst +++ b/routing.rst @@ -578,7 +578,7 @@ But if you pass extra ones, they will be added to the URI as a query string:: $this->router->generate('blog', array( 'page' => 2, - 'category' => 'Symfony' + 'category' => 'Symfony', )); // /blog/2?category=Symfony