diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-07-13 03:40:41 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-07-13 03:40:41 +0300 |
commit | d805523baec28129e5e7089cb53092406bcd8a25 (patch) | |
tree | cb3e74aaee466020a98ada4f5a41787b034f9a46 /apps/AddPath.hs | |
parent | bugfix + refactoring (diff) | |
download | windows-env-d805523baec28129e5e7089cb53092406bcd8a25.tar.gz windows-env-d805523baec28129e5e7089cb53092406bcd8a25.zip |
code style
Diffstat (limited to 'apps/AddPath.hs')
-rw-r--r-- | apps/AddPath.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/AddPath.hs b/apps/AddPath.hs index ad65242..aeb5ee5 100644 --- a/apps/AddPath.hs +++ b/apps/AddPath.hs @@ -15,9 +15,9 @@ import Options.Applicative import qualified Environment data Options = Options - { optName :: String + { optName :: String , optGlobal :: Bool - , optPaths :: [String] + , optPaths :: [String] } deriving (Eq, Show) options :: Parser Options |