1
1
mirror of https://github.com/qfpl/applied-fp-course.git synced 2024-11-26 14:43:53 +03:00

Level07: throwLeft -> liftEither

This commit is contained in:
Simon Holywell 2018-11-29 14:08:19 +10:00
parent 3e1f0c3f07
commit 6a11f48a59

View File

@ -100,6 +100,6 @@ liftEither
:: Either Error a :: Either Error a
-> AppM a -> AppM a
liftEither = liftEither =
error "throwLeft not implemented" error "liftEither not implemented"
-- Move on to ``src/Level07/DB.hs`` after this -- Move on to ``src/Level07/DB.hs`` after this