diff options
author | Edward Z. Yang <ezyang@cs.stanford.edu> | 2016-08-16 02:38:02 -0700 |
---|---|---|
committer | Edward Z. Yang <ezyang@cs.stanford.edu> | 2016-08-16 02:38:02 -0700 |
commit | b222ef7b9bdb42d5aabf94ce0eafe7808a16af39 (patch) | |
tree | 2b6b9bc0736e2fb37962642d8c61c69f98539592 /libraries/base/System | |
parent | d331ace4fd2a8728bb2c6ed829a0beb4fac6a76e (diff) | |
download | haskell-b222ef7b9bdb42d5aabf94ce0eafe7808a16af39.tar.gz |
Typofix in System.Environment docs.
Signed-off-by: Edward Z. Yang <ezyang@cs.stanford.edu>
Diffstat (limited to 'libraries/base/System')
-rw-r--r-- | libraries/base/System/Environment.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/System/Environment.hs b/libraries/base/System/Environment.hs index b3fbaf8279..242845aae6 100644 --- a/libraries/base/System/Environment.hs +++ b/libraries/base/System/Environment.hs @@ -305,7 +305,7 @@ putEnv keyvalue = do foreign import ccall unsafe "putenv" c_putenv :: CString -> IO CInt #endif --- | @unSet name@ removes the specified environment variable from the +-- | @unsetEnv name@ removes the specified environment variable from the -- environment of the current process. -- -- Throws `Control.Exception.IOException` if @name@ is the empty string or |