From 7bd18a998fd4e57b03e65347e5e94040fec171de Mon Sep 17 00:00:00 2001 From: endgame Date: Tue, 10 Sep 2019 09:11:48 +1000 Subject: [PATCH] Level06/AppM.hs: fix error message --- src/Level06/AppM.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Level06/AppM.hs b/src/Level06/AppM.hs index 90e72204..0819b4f9 100644 --- a/src/Level06/AppM.hs +++ b/src/Level06/AppM.hs @@ -91,4 +91,4 @@ instance Bifunctor AppM where -- pure :: Applicative m => a -> m a -- liftEither :: Either e a -> AppM e a -liftEither = error "throwLeft not implemented" +liftEither = error "liftEither not implemented"