diff --git a/README b/README
--- a/README
+++ b/README
@@ -29,4 +29,4 @@
 
 Running the tests:
 
-    runhaskell -isrc test/Properties.hs
+  cabal configure --enable-tests && cabal build && cabal test
diff --git a/split.cabal b/split.cabal
--- a/split.cabal
+++ b/split.cabal
@@ -1,5 +1,5 @@
 Name:                split
-Version:             0.2.1.2
+Version:             0.2.1.3
 Stability:           stable
 
 Description:         A collection of various methods for splitting
@@ -51,7 +51,7 @@
 
 Library
   ghc-options:       -Wall
-  build-depends:     base <4.7
+  build-depends:     base <4.8
   exposed-modules:   Data.List.Split, Data.List.Split.Internals
   default-language:  Haskell2010
   Hs-source-dirs:    src
diff --git a/src/Data/List/Split/Internals.hs b/src/Data/List/Split/Internals.hs
--- a/src/Data/List/Split/Internals.hs
+++ b/src/Data/List/Split/Internals.hs
@@ -143,7 +143,6 @@
   toSplitList (Just ([],r:rs))    = Delim [] : Text [r] : splitInternal d rs
   toSplitList (Just (delim,rest)) = Delim delim : splitInternal d rest
 
--- |
 breakDelim :: Delimiter a -> [a] -> ([a],Maybe ([a],[a]))
 breakDelim (Delimiter []) xs         = ([],Just ([],xs))
 breakDelim _              []         = ([],Nothing)
