From 740e58db87b459ba7ed790a149cd99af2e197b93 Mon Sep 17 00:00:00 2001 From: Fabien Schurter Date: Sun, 9 Aug 2015 19:25:45 +0200 Subject: [PATCH] Add a missing backtick --- create_framework/templating.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create_framework/templating.rst b/create_framework/templating.rst index 987a9ea26d1..5d233ecfe37 100644 --- a/create_framework/templating.rst +++ b/create_framework/templating.rst @@ -173,7 +173,7 @@ framework does not need to be modified in any way, just create a new The ``is_leap_year()`` function returns ``true`` when the given year is a leap year, ``false`` otherwise. If the year is ``null``, the current year is tested. The controller is simple: it gets the year from the request -attributes, pass it to the `is_leap_year()`` function, and according to the +attributes, pass it to the ``is_leap_year()`` function, and according to the return value it creates a new Response object. As always, you can decide to stop here and use the framework as is; it's