Fix typo in filter doc

This commit is contained in:
Yonel Ceruto
2019-05-27 09:59:11 -04:00
committed by GitHub
parent cca7007abd
commit 940641364b
+1 -1
View File
@@ -14,7 +14,7 @@ function. The arrow function receives the value of the sequence or mapping:
{{ sizes|filter(v => v > 38)|join(', ') }}
{# output 40, 42 #}
Combined with the ``for`` tag, it allows to filter the itemss to iterate over:
Combined with the ``for`` tag, it allows to filter the items to iterate over:
.. code-block:: twig