diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-08-20 19:04:24 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-08-20 19:04:24 +0300 |
commit | 943f237676d5d586f94d5428de98a2d1655ea893 (patch) | |
tree | e7ecc9cd3b5dde76c04385435bf3d189640c8e19 /src | |
parent | code style (diff) | |
download | windows-env-943f237676d5d586f94d5428de98a2d1655ea893.tar.gz windows-env-943f237676d5d586f94d5428de98a2d1655ea893.zip |
fix license text + add Haddock headers
Diffstat (limited to '')
-rw-r--r-- | src/Windows/Environment.hs | 12 | ||||
-rw-r--r-- | src/Windows/Registry.hs | 12 | ||||
-rw-r--r-- | src/Windows/Utils.hs | 10 |
3 files changed, 19 insertions, 15 deletions
diff --git a/src/Windows/Environment.hs b/src/Windows/Environment.hs index 5c26eea..322b97b 100644 --- a/src/Windows/Environment.hs +++ b/src/Windows/Environment.hs @@ -1,8 +1,10 @@ -{- - - Copyright 2015 Egor Tensin <Egor.Tensin@gmail.com> - - This file is licensed under the terms of the MIT License. - - See LICENSE.txt for details. --} +-- | +-- Copyright : (c) 2015 Egor Tensin <Egor.Tensin@gmail.com> +-- License : MIT +-- Maintainer : Egor.Tensin@gmail.com +-- Stability : experimental +-- +-- High-level functions for reading and writing Windows environment variables. module Windows.Environment ( Profile(..) diff --git a/src/Windows/Registry.hs b/src/Windows/Registry.hs index 6661177..0ff55c5 100644 --- a/src/Windows/Registry.hs +++ b/src/Windows/Registry.hs @@ -1,8 +1,10 @@ -{- - - Copyright 2015 Egor Tensin <Egor.Tensin@gmail.com> - - This file is licensed under the terms of the MIT License. - - See LICENSE.txt for details. --} +-- | +-- Copyright : (c) 2015 Egor Tensin <Egor.Tensin@gmail.com> +-- License : MIT +-- Maintainer : Egor.Tensin@gmail.com +-- Stability : experimental +-- +-- Low-level utility functions for reading and writing registry values. module Windows.Registry ( KeyPath diff --git a/src/Windows/Utils.hs b/src/Windows/Utils.hs index aad241f..06e495c 100644 --- a/src/Windows/Utils.hs +++ b/src/Windows/Utils.hs @@ -1,8 +1,8 @@ -{- - - Copyright 2016 Egor Tensin <Egor.Tensin@gmail.com> - - This file is licensed under the terms of the MIT License. - - See LICENSE.txt for details. --} +-- | +-- Copyright : (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> +-- License : MIT +-- Maintainer : Egor.Tensin@gmail.com +-- Stability : experimental module Windows.Utils ( notifyEnvironmentUpdate |