From 746d73d9025985d4d34450a04ec075c0bc695cdb Mon Sep 17 00:00:00 2001 From: Sean Chalmers Date: Thu, 17 Aug 2017 11:37:51 +1000 Subject: [PATCH] Typo fix --- level06/src/FirstApp/Main.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/level06/src/FirstApp/Main.hs b/level06/src/FirstApp/Main.hs index 9664856..9e644ff 100644 --- a/level06/src/FirstApp/Main.hs +++ b/level06/src/FirstApp/Main.hs @@ -62,7 +62,7 @@ prepareAppReqs = do -- which might have failed to be created for some reason, but our DB start up -- might have also failed for some reason. This is a bit clunky dbE <- fmap join $ traverse initDB cfgE - -- Wrap our values (if we have them) in a tuple for use in other parts of our + -- Wrap our values (if we have them) in our Env for use in other parts of our -- application. We do it this way so we can have access to the bits we need -- when starting up the full app or one for testing. pure $ liftA2 ( Env logToErr ) cfgE dbE