aboutsummaryrefslogtreecommitdiff
path: root/src/Map.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Map.hs')
-rw-r--r--src/Map.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Map.hs b/src/Map.hs
index 64d28df0..16cebdee 100644
--- a/src/Map.hs
+++ b/src/Map.hs
@@ -47,7 +47,7 @@ unionWith :: Ord k => (a -> a -> a) -> Map k a -> Map k a -> Map k a
unionWith c l r = plusFM_C c r l
unions :: Ord k => [Map k a] -> Map k a
-unions = foldr plusFM emptyFM
+unions = foldl (flip plusFM) emptyFM
elems :: Map k a -> [a]
elems = eltsFM