From 84924f41c15006094fc6d838229bef2ccd65c370 Mon Sep 17 00:00:00 2001 From: Jonathan Daugherty Date: Sun, 17 Jul 2022 19:08:02 -0700 Subject: [PATCH] Docstring edit --- src/Brick/Types/EventM.hs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Brick/Types/EventM.hs b/src/Brick/Types/EventM.hs index 16a5f32..7322c53 100644 --- a/src/Brick/Types/EventM.hs +++ b/src/Brick/Types/EventM.hs @@ -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 }