diff --git a/ListLike.cabal b/ListLike.cabal
--- a/ListLike.cabal
+++ b/ListLike.cabal
@@ -1,5 +1,5 @@
 Name: ListLike
-Version: 3.1.4
+Version: 3.1.5
 License: BSD3
 Maintainer: John Lato <jwlato@gmail.com>
 Author: John Goerzen
@@ -35,7 +35,7 @@
           Data.ListLike.Utils
   -- Other-Modules: Data.ConfigFile.Lexer
   Build-Depends: base       >= 3     && < 5
-                ,containers >= 0.3   && < 0.5
+                ,containers >= 0.3   && < 0.6
                 ,bytestring >= 0.9.1 && < 0.10
                 ,array      >= 0.3   && < 0.5
   
diff --git a/src/Data/ListLike.hs b/src/Data/ListLike.hs
--- a/src/Data/ListLike.hs
+++ b/src/Data/ListLike.hs
@@ -140,14 +140,14 @@
 same names, too.  Therefore, you'll want to be careful how you import
 the module.  I suggest using:
 
->import qualified ListLike as LL
+>import qualified Data.ListLike as LL
 
 Then, you can use LL.fold, LL.map, etc. to get the generic version of
 the functions you want.  Alternatively, you can hide the other versions
 from Prelude and import specific generic functions from here, such as:
 
 >import Prelude hiding (map)
->import ListLike (map)
+>import Data.ListLike (map)
 
 The module "Data.ListLike" actually simply re-exports the items found
 in a number of its sub-modules.  If you want a smaller subset of
