diff --git a/level07/src/FirstApp/AppM.hs b/level07/src/FirstApp/AppM.hs index 0900443..f2d5cd1 100644 --- a/level07/src/FirstApp/AppM.hs +++ b/level07/src/FirstApp/AppM.hs @@ -104,7 +104,7 @@ newtype AppM a = AppM , MonadError Error ) --- Now that we've two transformers in out 'stack', we have to 'run' them in order +-- Now that we've two transformers in our 'stack', we have to 'run' them in order -- to effect the computations and produce our result in our base monad. When -- you're running monad transformers you have to unpack them in order. Since our outer -- transformer is a ReaderT, we have to run that first. Followed by running