Merge branch '2.x' into 3.x

* 2.x:
  Fix typo in filter doc
This commit is contained in:
Fabien Potencier
2019-05-28 12:28:15 +02:00
+1 -1
View File
@@ -11,7 +11,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