Skip to content

Commit

Permalink
now correctly spell symmetric
Browse files Browse the repository at this point in the history
Signed-off-by: Brian Coca <[email protected]>
  • Loading branch information
bcoca committed Nov 19, 2013
1 parent 460bbfa commit 34c33f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/ansible/runner/filter_plugins/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ def intersect(a, b):
def difference(a, b):
return set(a).difference(b)

def symetric_difference(a, b):
return set(a).symetric_difference(b)
def symmetric_difference(a, b):
return set(a).symmetric_difference(b)

def union(a, b):
return set(a).union(b)
Expand Down Expand Up @@ -193,7 +193,7 @@ def filters(self):
'unique' : unique,
'intersect': intersect,
'difference': difference,
'symetric_difference': symetric_difference,
'symmetric_difference': symmetric_difference,
'union': union,
}

0 comments on commit 34c33f7

Please sign in to comment.