substract -> subtract

This commit is contained in:
Eelco Dolstra
2015-03-04 22:15:45 +01:00
parent 16d8a67e75
commit 829479d1dd
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -236,6 +236,6 @@ rec {
# Intersects list 'e' and another list
intersect = e: filter (x: elem x e);
# Substracts list 'e' from another list
substract = e: filter (x: !(elem x e));
# Subtracts list 'e' from another list
subtract = e: filter (x: !(elem x e));
}