applicative-extras 0.1.3 → 0.1.4
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
Control/Applicative/Error.hs view
@@ -21,7 +21,7 @@ Success f <*> Success x = Success (f x) maybeRead :: Read a => String -> Maybe a-maybeRead s | [(i, _)] <- readsPrec 0 s = Just i+maybeRead s | [(i, "")] <- readsPrec 0 s = Just i | otherwise = Nothing -- | Tries to read a value. Shows an error message when reading fails.
applicative-extras.cabal view
@@ -1,5 +1,5 @@ Name: applicative-extras-Version: 0.1.3+Version: 0.1.4 Synopsis: Instances for Applicative Description: Some instances for Applicative and type-level composition. Category: Control