Fix a few Haddock links

This commit is contained in:
Andrzej Rybczak 2022-08-22 15:36:48 +02:00
parent efc40b63f8
commit c3f673ed69
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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.
--