aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/WindowsEnv/Environment.hs
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2017-01-25 05:58:46 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2017-01-25 05:58:46 +0300
commitd3e2eeb7892e132120174de5567d932d83c97218 (patch)
treede2fa96af0f64764e7abf7b9482078e19502bae9 /src/WindowsEnv/Environment.hs
parentadd Portability to module descriptions (diff)
downloadwindows-env-d3e2eeb7892e132120174de5567d932d83c97218.tar.gz
windows-env-d3e2eeb7892e132120174de5567d932d83c97218.zip
rename namespace 'Windows' to 'WindowsEnv'
Diffstat (limited to '')
-rw-r--r--src/WindowsEnv/Environment.hs (renamed from src/Windows/Environment.hs)6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Windows/Environment.hs b/src/WindowsEnv/Environment.hs
index b975be4..8bfb449 100644
--- a/src/Windows/Environment.hs
+++ b/src/WindowsEnv/Environment.hs
@@ -8,7 +8,7 @@
--
-- High-level functions for reading and writing Windows environment variables.
-module Windows.Environment
+module WindowsEnv.Environment
( Profile(..)
, profileKeyPath
@@ -28,8 +28,8 @@ import Control.Monad.Trans.Except (ExceptT(..))
import Data.List (intercalate)
import Data.List.Split (splitOn)
-import qualified Windows.Registry as Registry
-import Windows.Utils (notifyEnvironmentUpdate)
+import qualified WindowsEnv.Registry as Registry
+import WindowsEnv.Utils (notifyEnvironmentUpdate)
data Profile = CurrentUser
| AllUsers