summaryrefslogtreecommitdiff
path: root/Command
diff options
context:
space:
mode:
Diffstat (limited to 'Command')
-rw-r--r--Command/Direct.hs2
-rw-r--r--Command/Unannex.hs2
2 files changed, 2 insertions, 2 deletions
diff --git a/Command/Direct.hs b/Command/Direct.hs
index 06adf0e05..817cedd53 100644
--- a/Command/Direct.hs
+++ b/Command/Direct.hs
@@ -26,7 +26,7 @@ seek = withNothing start
start :: CommandStart
start = ifM versionSupportsDirectMode
( ifM isDirect ( stop , next perform )
- , giveup "Direct mode is not suppported by this repository version. Use git-annex unlock instead."
+ , giveup "Direct mode is not supported by this repository version. Use git-annex unlock instead."
)
perform :: CommandPerform
diff --git a/Command/Unannex.hs b/Command/Unannex.hs
index e744b51a8..e3e8d51ab 100644
--- a/Command/Unannex.hs
+++ b/Command/Unannex.hs
@@ -26,7 +26,7 @@ import Git.FilePath
cmd :: Command
cmd = withGlobalOptions annexedMatchingOptions $
command "unannex" SectionUtility
- "undo accidential add command"
+ "undo accidental add command"
paramPaths (withParams seek)
seek :: CmdParams -> CommandSeek