summaryrefslogtreecommitdiff
path: root/src/GF/Data/Map.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/GF/Data/Map.hs')
-rw-r--r--src/GF/Data/Map.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GF/Data/Map.hs b/src/GF/Data/Map.hs
index ea27826f6..c86c9ab55 100644
--- a/src/GF/Data/Map.hs
+++ b/src/GF/Data/Map.hs
@@ -39,7 +39,7 @@ empty = emptyTree
-- | lookup operator.
(!) :: Ord key => Map key el -> key -> Maybe el
-fm ! e = lookupTree e fm
+(!) fm e = lookupTree e fm
-- | lookupMany operator.
(!+) :: Ord key => Map key el -> [key] -> [Maybe el]