packages feed

fay-base 0.14.3.0 → 0.14.3.1

raw patch · 2 files changed

+2/−3 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

fay-base.cabal view
@@ -1,12 +1,12 @@ name:                fay-base-version:             0.14.3.0+version:             0.14.3.1 synopsis:            The base package for Fay. description:         The base package for Fay.                      This package exports Prelude and FFI which you probably want to use with Fay. license:             BSD3 license-file:        LICENSE author:              Chris Done-maintainer:          Adam Bergmark+maintainer:          adam@edea.se homepage:            https://github.com/faylang/fay-base bug-reports:         https://github.com/faylang/fay-base/issues copyright:           2012 Chris Done
src/Prelude.hs view
@@ -901,7 +901,6 @@ product xs = foldl (*) 1 xs  sum :: Num a => [a] -> a-sum [] = error "sum: empty list" sum xs = foldl (+) 0 xs  scanl :: (a -> b -> a) -> a -> [b] -> [a]