From d6b3a14363927d765809e9e1da56ed03064acd8c Mon Sep 17 00:00:00 2001 From: Zbigniew Czapran Date: Mon, 2 Dec 2013 16:54:16 +0100 Subject: [PATCH] [Cookbook] Fixes a link to the Request class --- book/routing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/routing.rst b/book/routing.rst index a9dbe814863..50473a337c6 100644 --- a/book/routing.rst +++ b/book/routing.rst @@ -785,7 +785,7 @@ variables that are passed into the expression: * ``context``: An instance of :class:`Symfony\\Component\\Routing\\RequestContext`, which holds the most fundamental information about the route being matched; -* ``request``: The Symfony :class:`Symfony\\Component\\HttpFoundation\\Request`` +* ``request``: The Symfony :class:`Symfony\\Component\\HttpFoundation\\Request` object (see :ref:`component-http-foundation-request`). .. caution::