Merge pull request #5520 from kormoc/fix_symetric_tyop

While looking into filters, I noticed that the documentation has a typo....
This commit is contained in:
Michael DeHaan 2014-01-07 05:18:23 -08:00 committed by James Tanner
parent 21b4212ff5
commit 659cb3118f

View file

@ -190,9 +190,9 @@ To get the difference of 2 lists (items in 1 that don't exist in 2)::
{{ list1 |difference(list2)}}
To get the symetric difference of 2 lists (items exclusive to each list)::
To get the symmetric difference of 2 lists (items exclusive to each list)::
{{ list1 |symetric_difference(list2)}}
{{ list1 |symmetric_difference(list2)}}
.. _other_useful_filters: