From b6be403d3a27d068b31c774f84a93a7993aaadcb Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Thu, 16 Oct 2014 15:37:12 -0400 Subject: [PATCH] typos --- Utility/Env.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Utility/Env.hs b/Utility/Env.hs index bfb61aa8de..245c571c8d 100644 --- a/Utility/Env.hs +++ b/Utility/Env.hs @@ -48,7 +48,7 @@ setEnv :: String -> String -> Bool -> IO () #ifndef mingw32_HOST_OS setEnv var val overwrite = PE.setEnv var val overwrite #else -setEnv var val True = System.Setenv.setEnv var val +setEnv var val True = System.SetEnv.setEnv var val setEnv var val False = do r <- getEnv var case r of @@ -60,7 +60,7 @@ unsetEnv :: String -> IO () #ifndef mingw32_HOST_OS unsetEnv = PE.unsetEnv #else -unsetEnv = System.Setenv.unsetEnv +unsetEnv = System.SetEnv.unsetEnv #endif {- Adds the environment variable to the input environment. If already