1
1
mirror of https://github.com/qfpl/applied-fp-course.git synced 2024-11-25 19:24:08 +03:00

Merge pull request #6 from endgame/patch-2

level07: Fix typo
This commit is contained in:
Sean Chalmers 2018-01-12 13:49:03 +10:00 committed by GitHub
commit fa4217e637
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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