From 940641364ba15aba145f2fa552129588e16493c8 Mon Sep 17 00:00:00 2001 From: Yonel Ceruto Date: Mon, 27 May 2019 09:59:11 -0400 Subject: [PATCH] Fix typo in filter doc --- doc/filters/filter.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/filters/filter.rst b/doc/filters/filter.rst index 36ea06ce11..310e63a73e 100644 --- a/doc/filters/filter.rst +++ b/doc/filters/filter.rst @@ -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