From cf6fa7af4c5e969a559bdb21996fd9b4c0320267 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Fri, 22 Oct 2021 19:56:19 +0200 Subject: [PATCH] Fix a minor RST syntax issue --- page_creation.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/page_creation.rst b/page_creation.rst index 04cf5287f9..1b54ee212f 100644 --- a/page_creation.rst +++ b/page_creation.rst @@ -84,8 +84,8 @@ you run off to play the lottery, check out how this works. Remember the two step to creating a page? #. *Create a route*: In ``config/routes.yaml``, the route defines the URL to your - page (``path``) and what ``controller`` to call. You'll learn more about :doc:`routing ` - in its own section, including how to make *variable* URLs; + page (``path``) and what ``controller`` to call. You'll learn more about :doc:`routing ` + in its own section, including how to make *variable* URLs; #. *Create a controller*: This is a function where *you* build the page and ultimately return a ``Response`` object. You'll learn more about :doc:`controllers `