diff --git a/effectful-core/src/Effectful/Error/Static.hs b/effectful-core/src/Effectful/Error/Static.hs index b86f3f5..9f58c94 100644 --- a/effectful-core/src/Effectful/Error/Static.hs +++ b/effectful-core/src/Effectful/Error/Static.hs @@ -73,7 +73,7 @@ -- predictable behavior. -- -- /Hint:/ if you'd like to reproduce the transactional behavior with the --- 'Effectful.State.Static.Local.State' effect, appropriate usage of +-- t'Effectful.State.Static.Local.State' effect, appropriate usage of -- 'Control.Monad.Catch.bracketOnError' will do the trick. module Effectful.Error.Static ( -- * Effect diff --git a/effectful/src/Effectful/Concurrent/Effect.hs b/effectful/src/Effectful/Concurrent/Effect.hs index 044bba6..938a540 100644 --- a/effectful/src/Effectful/Concurrent/Effect.hs +++ b/effectful/src/Effectful/Concurrent/Effect.hs @@ -44,9 +44,9 @@ import Effectful.Dispatch.Static -- it's inside the 'Effectful.Reader.Static.local' block, even though the parent -- thread already got out of it. -- --- This is because the value provided by the 'Effectful.Reader.Static.Reader' +-- This is because the value provided by the t'Effectful.Reader.Static.Reader' -- effect is thread local, i.e. each thread manages its own version of it. For --- the 'Effectful.Reader.Static.Reader' it is the only reasonable behavior, it +-- the t'Effectful.Reader.Static.Reader' it is the only reasonable behavior, it -- wouldn't be very useful if its "read only" value was affected by calls to -- 'Effectful.Reader.Static.local' from its parent or child threads. --