diff --git a/exact-real.cabal b/exact-real.cabal
--- a/exact-real.cabal
+++ b/exact-real.cabal
@@ -1,5 +1,5 @@
 name:         exact-real
-version:      0.12.0
+version:      0.12.1
 synopsis:     Exact real arithmetic
 description:
   A type to represent exact real numbers using fast binary Cauchy sequences.
@@ -110,6 +110,6 @@
   build-depends:
     base      >= 4   && < 5,
     directory >= 1.0 && < 1.3,
-    doctest   >= 0.8 && < 0.11,
+    doctest   >= 0.8 && < 0.12,
     filepath  >= 1.3 && < 1.5
 
diff --git a/readme.md b/readme.md
--- a/readme.md
+++ b/readme.md
@@ -21,7 +21,7 @@
 0.0 :+ (-8.742278e-8)
 ```
 
-... and with a `CReal`
+... and with a `CReal`:
 
 ``` haskell
 λ> import Data.CReal
diff --git a/test/Ord.hs b/test/Ord.hs
--- a/test/Ord.hs
+++ b/test/Ord.hs
@@ -19,13 +19,13 @@
          , testTreeFromNamedBatch ">= is a total ordering" (ordRel (>=) gen)
          , complement "< is the complement of >=" gen (<) (>=)
          , complement "> is the complement of <=" gen (>) (<=)
-         , testProperty "max x y >= x xnd y" (property $ \x y ->
+         , testProperty "max x y >= x and y" (property $ \x y ->
                                let m = max x y :: a
                                in m >= x && m >= y)
          , testProperty "max x y == x or y" (property $ \x y ->
                                let m = max x y :: a
                                in m == x || m == y)
-         , testProperty "min x y >= x xnd y" (property $ \x y ->
+         , testProperty "min x y >= x and y" (property $ \x y ->
                                let m = min x y :: a
                                in m <= x && m <= y)
          , testProperty "min x y == x or y" (property $ \x y ->
