summaryrefslogtreecommitdiff
path: root/Commands.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Commands.hs')
-rw-r--r--Commands.hs12
1 files changed, 6 insertions, 6 deletions
diff --git a/Commands.hs b/Commands.hs
index feb35d1fb..730663b0d 100644
--- a/Commands.hs
+++ b/Commands.hs
@@ -21,12 +21,12 @@ import Core
options :: [OptDescr (String -> Annex ())]
options =
- [ Option ['a'] ["add"] (NoArg addCmd) "add files to annex"
- , Option ['p'] ["push"] (NoArg pushCmd) "push annex to repos"
- , Option ['P'] ["pull"] (NoArg pullCmd) "pull annex from repos"
- , Option ['w'] ["want"] (NoArg wantCmd) "request file contents"
- , Option ['g'] ["get"] (NoArg getCmd) "transfer file contents"
- , Option ['d'] ["drop"] (NoArg dropCmd) "indicate file contents not needed"
+ [ Option ['a'] ["add"] (NoArg addCmd) "add files to annex"
+ , Option ['p'] ["push"] (NoArg pushCmd) "push annex to repos"
+ , Option ['P'] ["pull"] (NoArg pullCmd) "pull annex from repos"
+ , Option ['w'] ["want"] (NoArg wantCmd) "request file contents"
+ , Option ['g'] ["get"] (NoArg getCmd) "transfer file contents"
+ , Option ['d'] ["drop"] (NoArg dropCmd) "indicate file contents not needed"
, Option ['u'] ["unannex"] (NoArg unannexCmd) "undo --add"
]