monad-loops 0.3.0.1 → 0.3.0.2
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- monad-loops.cabal +1/−1
- src/Control/Monad/Loops.hs +1/−1
monad-loops.cabal view
@@ -1,5 +1,5 @@ name: monad-loops-version: 0.3.0.1+version: 0.3.0.2 stability: provisional license: BSD3 license-file: LICENSE
src/Control/Monad/Loops.hs view
@@ -339,7 +339,7 @@ q <- p x if q then dropWhileM p xs- else return xs+ else return (x:xs) -- |like 'dropWhileM' but trims both ends of the list. trimM :: (Monad m) => (a -> m Bool) -> [a] -> m [a]