catamorphism 0.4.0.0 → 0.4.0.1
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- catamorphism.cabal +1/−1
- src/Data/Morphism/Cata.hs +1/−1
catamorphism.cabal view
@@ -1,5 +1,5 @@ name: catamorphism-version: 0.4.0.0+version: 0.4.0.1 synopsis: A package exposing a helper function for generating catamorphisms. description: A package exposing a helper function for generating catamorphisms. homepage: http://github.com/frerich/catamorphism
src/Data/Morphism/Cata.hs view
@@ -19,7 +19,7 @@ > -- Defines 'bool :: a -> a -> Bool -> a' > $(makeCata defaultOptions ''Bool) >-> -- Defines 'maybe :: b -> (Maybe a -> b) -> Maybe a -> b'+> -- Defines 'maybe :: b -> (a -> b) -> Maybe a -> b' > $(makeCata defaultOptions ''Maybe) > > -- Defines 'either :: (a -> c) -> (b -> c) -> Either a b -> c'