interspersed 0.1.0.1 → 0.1.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
interspersed.cabal view
@@ -1,7 +1,7 @@ name: interspersed version:- 0.1.0.1+ 0.1.0.2 synopsis: An abstraction over interspersing monadic actions description:
library/Interspersed/Prelude.hs view
@@ -28,7 +28,7 @@ {-# INLINE modifyM #-} modifyM :: Monad m => (a -> m a) -> StateT a m () modifyM f =- StateT (fmap (\s -> ((), s)) . f)+ StateT (liftM (\s -> ((), s)) . f) {-# INLINE skipSepBy #-} skipSepBy :: Alternative m => m () -> m () -> m ()