aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Gabor Greif <ggreif@gmail.com>2014-03-23 21:27:14 +0100
committerGravatar Gabor Greif <ggreif@gmail.com>2014-03-23 21:27:14 +0100
commitcdc3ae7b087ac7451298a5b87fe2548fb74c2fdc (patch)
tree8b053e32d3970ab3987b08b4c6ba315eda31585e
parent53dec0eaa542a9e3062e39fad2b60102440a6291 (diff)
Typo in comment
-rw-r--r--System/Posix/Env.hsc2
1 files changed, 1 insertions, 1 deletions
diff --git a/System/Posix/Env.hsc b/System/Posix/Env.hsc
index fbe5c79..557bc57 100644
--- a/System/Posix/Env.hsc
+++ b/System/Posix/Env.hsc
@@ -132,7 +132,7 @@ putEnv :: String -> IO ()
putEnv keyvalue = do s <- newFilePath keyvalue
-- Do not free `s` after calling putenv.
-- According to SUSv2, the string passed to putenv
- -- becomes part of the enviroment. #7342
+ -- becomes part of the environment. #7342
throwErrnoIfMinus1_ "putenv" (c_putenv s)
#if !MIN_VERSION_base(4,7,0)
where