From 4c79afece245ec63eb0f81148521ab583d7c358b Mon Sep 17 00:00:00 2001 From: Rob Rix Date: Thu, 1 Mar 2018 11:36:02 -0500 Subject: [PATCH] Correct some indentation. --- src/Control/Monad/Effect/Evaluatable.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Control/Monad/Effect/Evaluatable.hs b/src/Control/Monad/Effect/Evaluatable.hs index cf48c0c35..2a7cf0a1b 100644 --- a/src/Control/Monad/Effect/Evaluatable.hs +++ b/src/Control/Monad/Effect/Evaluatable.hs @@ -66,7 +66,7 @@ instance Evaluatable [] where eval [x] = subtermValue x -- Return the value for the last term eval (x:xs) = do _ <- subtermValue x -- Evaluate the head term - env <- getGlobalEnv -- Get the global environment after evaluation + env <- getGlobalEnv -- Get the global environment after evaluation -- since it might have been modified by the -- evaluation above ^.