packages feed

ListZipper 1.2.0.1 → 1.2.0.2

raw patch · 2 files changed

+2/−2 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Data/List/Zipper.hs view
@@ -143,7 +143,7 @@ foldlz' :: (b -> Zipper a -> b) -> b -> Zipper a -> b foldlz' f x z         | endp z    = x-        | otherwise = acc `seq` foldlz f acc (right z)+        | otherwise = acc `seq` foldlz' f acc (right z)         where acc = f x z  -- | @extractz@, @extendz@, and @duplicatez@ can be used to
ListZipper.cabal view
@@ -1,5 +1,5 @@ name:            ListZipper-version:         1.2.0.1+version:         1.2.0.2 copyright:       (c) 2008 Ryan Ingram license:         BSD3 license-file:    LICENSE