* 1.x:
Fix typo in filter doc
... | ... |
@@ -14,7 +14,7 @@ function. The arrow function receives the value of the sequence or mapping: |
14 | 14 |
{{ sizes|filter(v => v > 38)|join(', ') }} |
15 | 15 |
{# output 40, 42 #} |
16 | 16 |
|
17 |
-Combined with the ``for`` tag, it allows to filter the itemss to iterate over: |
|
17 |
+Combined with the ``for`` tag, it allows to filter the items to iterate over: |
|
18 | 18 |
|
19 | 19 |
.. code-block:: twig |
20 | 20 |
|