Docstring edit

This commit is contained in:
Jonathan Daugherty 2022-07-17 19:08:02 -07:00
parent 241b599fd2
commit 84924f41c1

View File

@ -12,9 +12,7 @@ import Control.Monad.State.Strict
import Brick.Types.Internal
-- | The monad in which event handlers run. Although it may be tempting
-- to dig into the reader value yourself, just use
-- 'Brick.Main.lookupViewport'.
-- | The monad in which event handlers run.
newtype EventM n s a =
EventM { runEventM :: ReaderT (EventRO n) (StateT (EventState n s) IO) a
}