diff --git a/lub.cabal b/lub.cabal
--- a/lub.cabal
+++ b/lub.cabal
@@ -1,5 +1,5 @@
 Name:                lub
-Version:             0.1.1
+Version:             0.1.2
 Cabal-Version:       >= 1.2
 Synopsis:            information operators: least upper bound (lub) and greatest lower bound (glb)
 Category:            Concurrency, Data, Other
@@ -33,7 +33,7 @@
                        Data.Repr
                        Data.Lub
                        Data.Glb
-                       Data.Lazier
+                       Data.Laxer
                        
   ghc-options:         -Wall
 
diff --git a/src/Data/Laxer.hs b/src/Data/Laxer.hs
new file mode 100644
--- /dev/null
+++ b/src/Data/Laxer.hs
@@ -0,0 +1,67 @@
+-- {-# LANGUAGE #-}
+{-# OPTIONS_GHC -Wall #-}
+----------------------------------------------------------------------
+-- |
+-- Module      :  Data.Laxer
+-- Copyright   :  (c) Conal Elliott 2010
+-- License     :  BSD3
+-- 
+-- Maintainer  :  conal@conal.net
+-- Stability   :  experimental
+-- 
+-- Some lazier operations.
+-- See <http://conal.net/blog/posts/lazier-functional-programming-part-2/>
+----------------------------------------------------------------------
+
+module Data.Laxer (eitherL,condL) where
+
+import Data.Lub
+import Data.Glb
+
+condL :: (HasLub a, HasGlb a) =>
+         a -> a -> Bool -> a
+condL a b = const (a `glb` b) `lub` (\ c -> if c then a else b)
+
+eitherL :: (HasLub c, HasGlb c) =>
+           (a -> c) -> (b -> c) -> (Either a b -> c)
+eitherL f g = const (f undefined `glb` g undefined) `lub` either f g
+
+{- -- Examples:
+
+-- It takes care to check that some of these examples are computed
+-- correctly, since printing stops at the first error.  For instance, ask
+-- for t5!!1 .
+
+q :: Int
+q = undefined `unamb` 5
+
+t0 :: Int
+t0 = condL 3 4 True
+
+t1,t2 :: Int
+t1 = condL 6 8 undefined  -- _|_
+t2 = condL 7 7 undefined  -- 7
+
+t3,t4 :: (Int,Int)
+t3 = condL (3,4) (4,5) undefined  -- (_|_,_|_)
+t4 = condL (3,4) (3,5) undefined  -- (3,_|_)
+
+t5 :: [Int]
+t5 = condL [2,3,5] [1,3] undefined  -- _|_:3:_|_
+
+
+fe1 :: Either Float Bool -> (Int,String)
+fe1 = eitherL (\ x -> (3,"beetle " ++ show x)) (\ b -> (3,"battle " ++ show b))
+
+s1 :: (Int,String)
+s1 = fe1 undefined
+-- (3,"b*** Exception: glb: bottom (flat & unequal)
+
+s2 :: String
+s2 = (tail.tail.tail.snd) (fe1 undefined)
+-- "tle *** Exception: Prelude.undefined
+
+s3 :: (Int,String)
+s3 = fe1 (Left pi)
+
+-}
diff --git a/src/Data/Lazier.hs b/src/Data/Lazier.hs
deleted file mode 100644
--- a/src/Data/Lazier.hs
+++ /dev/null
@@ -1,67 +0,0 @@
--- {-# LANGUAGE #-}
-{-# OPTIONS_GHC -Wall #-}
-----------------------------------------------------------------------
--- |
--- Module      :  Data.Lazier
--- Copyright   :  (c) Conal Elliott 2010
--- License     :  BSD3
--- 
--- Maintainer  :  conal@conal.net
--- Stability   :  experimental
--- 
--- Some lazier operations.
--- See <http://conal.net/blog/posts/lazier-functional-programming-part-2/>
-----------------------------------------------------------------------
-
-module Data.Lazier (eitherL,condL) where
-
-import Data.Lub
-import Data.Glb
-
-condL :: (HasLub a, HasGlb a) =>
-         a -> a -> Bool -> a
-condL a b = const (a `glb` b) `lub` (\ c -> if c then a else b)
-
-eitherL :: (HasLub c, HasGlb c) =>
-           (a -> c) -> (b -> c) -> (Either a b -> c)
-eitherL f g = const (f undefined `glb` g undefined) `lub` either f g
-
-{- -- Examples:
-
--- It takes care to check that some of these examples are computed
--- correctly, since printing stops at the first error.  For instance, ask
--- for t5!!1 .
-
-q :: Int
-q = undefined `unamb` 5
-
-t0 :: Int
-t0 = condL 3 4 True
-
-t1,t2 :: Int
-t1 = condL 6 8 undefined  -- _|_
-t2 = condL 7 7 undefined  -- 7
-
-t3,t4 :: (Int,Int)
-t3 = condL (3,4) (4,5) undefined  -- (_|_,_|_)
-t4 = condL (3,4) (3,5) undefined  -- (3,_|_)
-
-t5 :: [Int]
-t5 = condL [2,3,5] [1,3] undefined  -- _|_:3:_|_
-
-
-fe1 :: Either Float Bool -> (Int,String)
-fe1 = eitherL (\ x -> (3,"beetle " ++ show x)) (\ b -> (3,"battle " ++ show b))
-
-s1 :: (Int,String)
-s1 = fe1 undefined
--- (3,"b*** Exception: glb: bottom (flat & unequal)
-
-s2 :: String
-s2 = (tail.tail.tail.snd) (fe1 undefined)
--- "tle *** Exception: Prelude.undefined
-
-s3 :: (Int,String)
-s3 = fe1 (Left pi)
-
--}
