We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee131c4 commit 4644324Copy full SHA for 4644324
src/Control/Monad/RWS/Trans.purs
@@ -27,7 +27,7 @@ import Data.Tuple (Tuple(..), uncurry)
27
data RWSResult state result writer = RWSResult state result writer
28
29
-- | The reader-writer-state monad transformer, which combines the operations
30
--- | of `RWST`, `WriterT` and `StateT` into a single monad transformer.
+-- | of `ReaderT`, `WriterT` and `StateT` into a single monad transformer.
31
newtype RWST r w s m a = RWST (r -> s -> m (RWSResult s a w))
32
33
-- | Run a computation in the `RWST` monad.
0 commit comments