acme-pointful-numbers 0.1.2.3 → 0.1.2.4
raw patch · 2 files changed
+7/−4 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Acme/Pointful.hs +6/−3
- acme-pointful-numbers.cabal +1/−1
Acme/Pointful.hs view
@@ -16,10 +16,13 @@ -- > ghc = 7.8.2 -- ≡ Pointful [7,8,2] -- > ip = 192.168.100.1 -- --- It won't work with big numbers (and it won't even try to prevent incorrect results).--- Up to 7 digits is ok.---+-- It won't work with big numbers (and it won't even try to prevent+-- incorrect results). Up to 7 digits is ok.+-- -- Don't use if your code is not pointless enough.+-- +-- Don't use if you care about the trailing zeros (in all the parts+-- after first point). They may be insignificant. Sometimes. {-# LANGUAGE UndecidableInstances #-} {-# LANGUAGE FlexibleContexts #-}
acme-pointful-numbers.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: acme-pointful-numbers-version: 0.1.2.3+version: 0.1.2.4 synopsis: Make more than one point in numeric literals description: Allows use to write more pointful than usual numbers. Example: @3.14.159@. .