File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -268,7 +268,7 @@ toAscList = M.toAscList . unKeyMap
268
268
difference :: KeyMap v -> KeyMap v' -> KeyMap v
269
269
difference tm1 tm2 = KeyMap (M. difference (unKeyMap tm1) (unKeyMap tm2))
270
270
271
- -- The (left-biased) union of two maps. It prefers the first map when duplicate
271
+ -- | The (left-biased) union of two maps. It prefers the first map when duplicate
272
272
-- keys are encountered, i.e. ('union' == 'unionWith' 'const').
273
273
union :: KeyMap v -> KeyMap v -> KeyMap v
274
274
union (KeyMap x) (KeyMap y) = KeyMap (M. union x y)
@@ -477,7 +477,7 @@ toAscList = sortBy (comparing fst) . toList
477
477
difference :: KeyMap v -> KeyMap v' -> KeyMap v
478
478
difference tm1 tm2 = KeyMap (H. difference (unKeyMap tm1) (unKeyMap tm2))
479
479
480
- -- The (left-biased) union of two maps. It prefers the first map when duplicate
480
+ -- | The (left-biased) union of two maps. It prefers the first map when duplicate
481
481
-- keys are encountered, i.e. ('union' == 'unionWith' 'const').
482
482
union :: KeyMap v -> KeyMap v -> KeyMap v
483
483
union (KeyMap x) (KeyMap y) = KeyMap (H. union x y)
You can’t perform that action at this time.
0 commit comments