Fix a minor RST syntax issue

This commit is contained in:
Javier Eguiluz
2021-10-22 19:56:01 +02:00
committed by GitHub
parent 67f3845bc1
commit 5b918a281e

View File

@@ -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 </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 </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 </controller>`