fixed-generic 0.1.0.1 → 0.1.0.2
raw patch · 2 files changed
+2/−2 lines, 2 files
Files
- fixed-generic.cabal +1/−1
- src/Data/Fixed/Generic.hs +1/−1
fixed-generic.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: fixed-generic-version: 0.1.0.1+version: 0.1.0.2 synopsis: Fixed-point number build on generic integral number description: Please see the README on GitHub at <https://github.com/YoshikuniJujo/fixed-generic#readme> category: Numeric
src/Data/Fixed/Generic.hs view
@@ -11,7 +11,7 @@ import Data.Data import Data.Fixed -newtype F (a :: k) n = MkF n deriving (Eq, Ord)+newtype F (a :: k) n = MkF n deriving (Eq, Ord, Bounded) tyF :: DataType tyF = mkDataType "Data.Fixed.Generic.F" [conMkF]