1
0
forked from VimPlug/jedi

typo for symmetric_difference, davidhalter/jedi-vim#45

This commit is contained in:
David Halter
2012-12-11 14:03:24 +01:00
parent cef7da7035
commit 2d75f509b7

View File

@@ -148,7 +148,7 @@ class set():
def intersection(self, other):
return self & other
def symetric_difference(self, other):
def symmetric_difference(self, other):
return self ^ other
def union(self, other):