Skip to content

Commit d0adc21

Browse files
committed
Merge branch 'master' of github:haskell/containers
2 parents e9ec4c2 + b263e4a commit d0adc21

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Data/IntMap.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
--
4040
-- * Chris Okasaki and Andy Gill, \"/Fast Mergeable Integer Maps/\",
4141
-- Workshop on ML, September 1998, pages 77-86,
42-
-- <http://citeseer.ist.psu.edu/okasaki98fast.html>
42+
-- <http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.37.5452>
4343
--
4444
-- * D.R. Morrison, \"/PATRICIA -- Practical Algorithm To Retrieve
4545
-- Information Coded In Alphanumeric/\", Journal of the ACM, 15(4),

Data/Map/Strict.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -819,7 +819,7 @@ intersectionWithKey f t1 t2 = mergeWithKey (\k x1 x2 -> Just $ f k x1 x2) (const
819819
-- > myIntersectionWithKey f m1 m2 = mergeWithKey (\k x1 x2 -> Just (f k x1 x2)) (const empty) (const empty) m1 m2
820820
--
821821
-- When calling @'mergeWithKey' combine only1 only2@, a function combining two
822-
-- 'IntMap's is created, such that
822+
-- 'Map's is created, such that
823823
--
824824
-- * if a key is present in both maps, it is passed with both corresponding
825825
-- values to the @combine@ function. Depending on the result, the key is either

0 commit comments

Comments
 (0)