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 /apps | |
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-- | apps/AddPath.hs | 10 | ||||
-rw-r--r-- | apps/FixNtSymbolPath.hs | 10 | ||||
-rw-r--r-- | apps/ListPath.hs | 10 | ||||
-rw-r--r-- | apps/Prompt.hs | 10 | ||||
-rw-r--r-- | apps/PromptMessage.hs | 10 | ||||
-rw-r--r-- | apps/RemovePath.hs | 10 | ||||
-rw-r--r-- | apps/SetEnv.hs | 10 | ||||
-rw-r--r-- | apps/UnsetEnv.hs | 10 |
8 files changed, 40 insertions, 40 deletions
diff --git a/apps/AddPath.hs b/apps/AddPath.hs index 93ea212..5fba7ce 100644 --- a/apps/AddPath.hs +++ b/apps/AddPath.hs @@ -1,8 +1,8 @@ -{- - - 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 module Main (main) where diff --git a/apps/FixNtSymbolPath.hs b/apps/FixNtSymbolPath.hs index a7c3b08..52c2349 100644 --- a/apps/FixNtSymbolPath.hs +++ b/apps/FixNtSymbolPath.hs @@ -1,8 +1,8 @@ -{- - - 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 module Main (main) where diff --git a/apps/ListPath.hs b/apps/ListPath.hs index 6bb8a46..5aac18d 100644 --- a/apps/ListPath.hs +++ b/apps/ListPath.hs @@ -1,8 +1,8 @@ -{- - - 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 module Main (main) where diff --git a/apps/Prompt.hs b/apps/Prompt.hs index 0beecc2..e8280de 100644 --- a/apps/Prompt.hs +++ b/apps/Prompt.hs @@ -1,8 +1,8 @@ -{- - - 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 module Prompt ( withPrompt diff --git a/apps/PromptMessage.hs b/apps/PromptMessage.hs index 5ed7c4b..b02c0a2 100644 --- a/apps/PromptMessage.hs +++ b/apps/PromptMessage.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 PromptMessage ( engraveMessage diff --git a/apps/RemovePath.hs b/apps/RemovePath.hs index 5f5cd1d..1c8ee51 100644 --- a/apps/RemovePath.hs +++ b/apps/RemovePath.hs @@ -1,8 +1,8 @@ -{- - - 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 module Main (main) where diff --git a/apps/SetEnv.hs b/apps/SetEnv.hs index debc62d..14c23ae 100644 --- a/apps/SetEnv.hs +++ b/apps/SetEnv.hs @@ -1,8 +1,8 @@ -{- - - 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 module Main (main) where diff --git a/apps/UnsetEnv.hs b/apps/UnsetEnv.hs index 4fd6ccb..2ca0997 100644 --- a/apps/UnsetEnv.hs +++ b/apps/UnsetEnv.hs @@ -1,8 +1,8 @@ -{- - - 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 module Main (main) where |