diff options
author | Edward Betts <edward@4angle.com> | 2017-02-11 09:38:49 +0000 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2017-02-12 17:30:23 -0400 |
commit | c6e4dcca673841f29449c8c2bf85fa41b31da12f (patch) | |
tree | a0e16f9c52f6690be527044031607d97fae7d706 /Command | |
parent | f765752568381ca2f003c08e9601fb2b5c397b5b (diff) |
correct spelling mistakes
Diffstat (limited to 'Command')
-rw-r--r-- | Command/Direct.hs | 2 | ||||
-rw-r--r-- | Command/Unannex.hs | 2 |
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 |