split 0.2.1.2 → 0.2.1.3
raw patch · 3 files changed
+3/−4 lines, 3 filesdep ~base
Dependency ranges changed: base
Files
- README +1/−1
- split.cabal +2/−2
- src/Data/List/Split/Internals.hs +0/−1
README view
@@ -29,4 +29,4 @@ Running the tests: - runhaskell -isrc test/Properties.hs+ cabal configure --enable-tests && cabal build && cabal test
split.cabal view
@@ -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
src/Data/List/Split/Internals.hs view
@@ -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)