data-fix 0.0.7 → 0.2.0
raw patch · 2 files changed
+4/−4 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- data-fix.cabal +3/−3
- src/Data/Fix.hs +1/−1
data-fix.cabal view
@@ -1,5 +1,5 @@ Name: data-fix-Version: 0.0.7+Version: 0.2.0 Cabal-Version: >= 1.10 License: BSD3 License-file: LICENSE@@ -8,7 +8,7 @@ Category: Data Synopsis: Fixpoint data types Build-Type: Simple-Description: +Description: Fixpoint types and recursion schemes. If you define your AST as fixpoint type, you get fold and unfold operations for free. .@@ -30,5 +30,5 @@ ghc-options: -Wall - Exposed-modules: + Exposed-modules: Data.Fix
src/Data/Fix.hs view
@@ -5,7 +5,7 @@ DeriveGeneric, DeriveDataTypeable, StandaloneDeriving #-}--- | Fix-point type. It allows to define generic recurion schemes.+-- | Fix-point type. It allows to define generic recursion schemes. -- -- > Fix f = f (Fix f) --