[commit: packages/containers] ghc-head: Fix module references in the documentation. (a93ea46)
git at git.haskell.org
git at git.haskell.org
Fri Aug 30 13:34:20 CEST 2013
Repository : ssh://git@git.haskell.org/containers
On branch : ghc-head
Link : http://git.haskell.org/?p=packages/containers.git;a=commit;h=a93ea4651eaba1b0ca3d4fe2e276643ec0b1d122
>---------------------------------------------------------------
commit a93ea4651eaba1b0ca3d4fe2e276643ec0b1d122
Author: Milan Straka <fox at ucw.cz>
Date: Sun Nov 11 09:56:58 2012 +0100
Fix module references in the documentation.
The right format is "Data.Map.Lazy", not 'Data.Map.Lazy'.
>---------------------------------------------------------------
a93ea4651eaba1b0ca3d4fe2e276643ec0b1d122
Data/IntMap.hs | 2 +-
Data/Map.hs | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Data/IntMap.hs b/Data/IntMap.hs
index 8a5bc6b..cb20340 100644
--- a/Data/IntMap.hs
+++ b/Data/IntMap.hs
@@ -15,7 +15,7 @@
-- An efficient implementation of maps from integer keys to values
-- (dictionaries).
--
--- This module re-exports the value lazy 'Data.IntMap.Lazy' API, plus
+-- This module re-exports the value lazy "Data.IntMap.Lazy" API, plus
-- several obsolete value strict functions. Please note that these functions
-- have different strictness properties than those in "Data.IntMap.Strict":
-- they only evaluate the result of the combining function. For example, the
diff --git a/Data/Map.hs b/Data/Map.hs
index 56a4239..73aeb7d 100644
--- a/Data/Map.hs
+++ b/Data/Map.hs
@@ -15,7 +15,7 @@
-- An efficient implementation of ordered maps from keys to values
-- (dictionaries).
--
--- This module re-exports the value lazy 'Data.Map.Lazy' API, plus
+-- This module re-exports the value lazy "Data.Map.Lazy" API, plus
-- several obsolete value strict functions. Please note that these functions
-- have different strictness properties than those in "Data.Map.Strict":
-- they only evaluate the values inserted into the map. For example, the
More information about the ghc-commits
mailing list