aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--apps/SetEnv.hs2
-rw-r--r--apps/UnsetEnv.hs2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/SetEnv.hs b/apps/SetEnv.hs
index 482bb31..debc1d0 100644
--- a/apps/SetEnv.hs
+++ b/apps/SetEnv.hs
@@ -45,7 +45,7 @@ main :: IO ()
main = execParser parser >>= setEnv
where
parser = info (helper <*> optionParser) $
- fullDesc <> progDesc "Set environment variable"
+ fullDesc <> progDesc "Set environment variables"
setEnv :: Options -> IO ()
setEnv options = void $ promptAnd engrave
diff --git a/apps/UnsetEnv.hs b/apps/UnsetEnv.hs
index 767c681..e08c95a 100644
--- a/apps/UnsetEnv.hs
+++ b/apps/UnsetEnv.hs
@@ -40,7 +40,7 @@ main :: IO ()
main = execParser parser >>= unsetEnv
where
parser = info (helper <*> optionParser) $
- fullDesc <> progDesc "Unset environment variable"
+ fullDesc <> progDesc "Unset environment variables"
unsetEnv :: Options -> IO ()
unsetEnv options = void $ promptAnd wipe