From 7c96840673ecd08e6ca7700534288dd0adc1e89b Mon Sep 17 00:00:00 2001 From: Andrzej Rybczak Date: Fri, 27 May 2022 06:00:26 +0200 Subject: [PATCH] Clarify WriterT solution --- transformers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transformers.md b/transformers.md index 9e904a1..3f0a655 100644 --- a/transformers.md +++ b/transformers.md @@ -29,7 +29,7 @@ That leaves `ReaderT`, which is the only one with predictable behavior. - `State` effects never lose updates and they're not affected by the order of effects on the stack in any way. -- `Writer` effects are properly strict. +- `Writer` effects are properly strict (but still niche). - There is no `RWST` equivalent because stacking effects is very cheap.