From 46443245d706f8eedb3afa8f35c705b2e45214b5 Mon Sep 17 00:00:00 2001 From: Hardy Jones Date: Sun, 31 Dec 2017 07:39:19 -0800 Subject: [PATCH] Fix typo The `R` in `RWST` stands for `ReaderT`, not `RWST`. This appears to happened by accident in: 1c0a25383fab8997f6bb92e7af6f53dc43266cb9. --- src/Control/Monad/RWS/Trans.purs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Control/Monad/RWS/Trans.purs b/src/Control/Monad/RWS/Trans.purs index ac0b410a..4c455a23 100644 --- a/src/Control/Monad/RWS/Trans.purs +++ b/src/Control/Monad/RWS/Trans.purs @@ -27,7 +27,7 @@ import Data.Tuple (Tuple(..), uncurry) data RWSResult state result writer = RWSResult state result writer -- | The reader-writer-state monad transformer, which combines the operations --- | of `RWST`, `WriterT` and `StateT` into a single monad transformer. +-- | of `ReaderT`, `WriterT` and `StateT` into a single monad transformer. newtype RWST r w s m a = RWST (r -> s -> m (RWSResult s a w)) -- | Run a computation in the `RWST` monad.