add a comma to clarify the meaning

Without the comma you could understand that the "if" not only applied
to `-1`, but to `1` as well if you read too quickly.
This commit is contained in:
Christian Flothmann
2016-12-23 08:52:50 +01:00
committed by GitHub
parent c88edc8c75
commit 7cd3c9d25f
+1 -1
View File
@@ -36,7 +36,7 @@ decrement for negative values):
{# outputs 3, 2, 1, 0, #}
The Twig built-in ``..`` operator is just syntactic sugar for the ``range``
function (with a step of ``1`` or ``-1`` if the start is greater than the end):
function (with a step of ``1``, or ``-1`` if the start is greater than the end):
.. code-block:: jinja