ether 0.4.0.0 → 0.4.0.1
raw patch · 2 files changed
+5/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
ether.cabal view
@@ -1,9 +1,11 @@ name: ether-version: 0.4.0.0+version: 0.4.0.1 synopsis: Monad transformers and classes description: Ether is a Haskell library that extends @mtl@ and @transformers@ with tagged monad transformers and classes in a compatible way.++ Introduction https://int-index.github.io/ether/ category: Control license: BSD3
src/Control/Monad/Trans/Ether/Reader.hs view
@@ -53,12 +53,12 @@ reader _ = pack . Trans.reader -- | Runs a 'ReaderT' with the given environment--- and returns the vinal value.+-- and returns the final value. runReaderT :: proxy tag -> ReaderT tag r m a -> r -> m a runReaderT _ = Trans.runReaderT . unpack -- | Runs a 'ReaderT' with the given environment--- and returns the vinal value.+-- and returns the final value. runReader :: proxy tag -> Reader tag r a -> r -> a runReader _ = Trans.runReader . unpack