aboutsummaryrefslogtreecommitdiff
path: root/Commands.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2010-10-14 14:54:56 -0400
committerGravatar Joey Hess <joey@kitenet.net>2010-10-14 14:54:56 -0400
commit40df205881c6bfa180dd37d1a6e67afb3ce3593f (patch)
tree740f51cad9af555dd1219a9cefe507fd7a73d1c2 /Commands.hs
parent1d628ff2380d1bec0c260bc19349c67360fa7a1f (diff)
indent
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"
]