From dd263eefc9a262f3bc318716a9f6d80bcc9e1d79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Perrin?= Date: Tue, 29 May 2012 16:31:11 +0200 Subject: [PATCH] Fix minor typo in Routing chapter of the Book --- book/routing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/routing.rst b/book/routing.rst index 88c165240ec..298c6e65827 100644 --- a/book/routing.rst +++ b/book/routing.rst @@ -88,7 +88,7 @@ pattern that points to a specific PHP class and method: { public function showAction($slug) { - $blog = // use the $slug varible to query the database + $blog = // use the $slug variable to query the database return $this->render('AcmeBlogBundle:Blog:show.html.twig', array( 'blog' => $blog,