From 659cb3118f9276f9ae2cbe83396ce0d074f29411 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Tue, 7 Jan 2014 05:18:23 -0800 Subject: [PATCH] Merge pull request #5520 from kormoc/fix_symetric_tyop While looking into filters, I noticed that the documentation has a typo.... --- docsite/rst/playbooks_variables.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docsite/rst/playbooks_variables.rst b/docsite/rst/playbooks_variables.rst index e76ff64a9ec..68703fef4a6 100644 --- a/docsite/rst/playbooks_variables.rst +++ b/docsite/rst/playbooks_variables.rst @@ -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: