Repository : ssh://darcs.haskell.org//srv/darcs/packages/containers On branch : master
http://hackage.haskell.org/trac/ghc/changeset/0ec3cf3576bd4c0812fe912b26ad471c8bd61784 >--------------------------------------------------------------- commit 0ec3cf3576bd4c0812fe912b26ad471c8bd61784 Author: Johan Tibell <[email protected]> Date: Thu Nov 17 18:37:21 2011 -0800 Fix docs to refer to new module names >--------------------------------------------------------------- Data/Map/Lazy.hs | 4 ++-- Data/Map/Strict.hs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Data/Map/Lazy.hs b/Data/Map/Lazy.hs index 66447a9..064db58 100644 --- a/Data/Map/Lazy.hs +++ b/Data/Map/Lazy.hs @@ -17,8 +17,8 @@ -- Since many function names (but not the type name) clash with -- "Prelude" names, this module is usually imported @qualified@, e.g. -- --- > import Data.Map (Map) --- > import qualified Data.Map as Map +-- > import Data.Map.Lazy (Map) +-- > import qualified Data.Map.Lazy as Map -- -- The implementation of 'Map' is based on /size balanced/ binary trees (or -- trees of /bounded balance/) as described by: diff --git a/Data/Map/Strict.hs b/Data/Map/Strict.hs index dfd023e..d606aee 100644 --- a/Data/Map/Strict.hs +++ b/Data/Map/Strict.hs @@ -17,8 +17,8 @@ -- Since many function names (but not the type name) clash with -- "Prelude" names, this module is usually imported @qualified@, e.g. -- --- > import Data.Map (Map) --- > import qualified Data.Map as Map +-- > import Data.Map.Strict (Map) +-- > import qualified Data.Map.Strict as Map -- -- The implementation of 'Map' is based on /size balanced/ binary trees (or -- trees of /bounded balance/) as described by: _______________________________________________ Cvs-libraries mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-libraries
