generic-maybe 0.3.0.2 → 0.3.0.3
raw patch · 2 files changed
+3/−3 lines, 2 files
Files
- generic-maybe.cabal +2/−2
- src/Data/Generics/Maybe.hs +1/−1
generic-maybe.cabal view
@@ -2,14 +2,14 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: generic-maybe-version: 0.3.0.2+version: 0.3.0.3 synopsis: A generic version of Data.Maybe description: This module is a drop in replacement for 'Data.Maybe'. It generalizes the functions to any types that share the same \"sum of products\" view of 'Maybe'. .- To use the module for you type, enable GHC's DeriveGeneric extension and+ To use the module for your type, enable GHC's DeriveGeneric extension and derive a Generic instance for your type. . > import GHC.Generics
src/Data/Generics/Maybe.hs view
@@ -2,7 +2,7 @@ the functions to any types that share the same \"sum of products\" view of 'Data.Maybe.Maybe'. - To use the module for you type, enable GHC's DeriveGeneric extension and+ To use the module for your type, enable GHC's DeriveGeneric extension and derive a Generic instance for your type. @