diff options
author | Colin Okay <colin@cicadas.surf> | 2022-08-09 10:18:03 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-08-09 10:18:03 -0500 |
commit | 33798548a62ca1610252a583875690e94c8619f6 (patch) | |
tree | d9924d25c2f63acc30daa1ee68a77a3a8e76758d /app/modify.lisp | |
parent | e955869d2868a8cf867db44aad53534a92e10b92 (diff) |
[change] some the useage statements for cli interface
Diffstat (limited to 'app/modify.lisp')
-rw-r--r-- | app/modify.lisp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/app/modify.lisp b/app/modify.lisp index 5ad9655..ad75513 100644 --- a/app/modify.lisp +++ b/app/modify.lisp @@ -16,7 +16,7 @@ (defun modify/redraft/command () (cli:make-command :name "redraft" - :usage "<IDENTIFIER>" + :usage "<identifier>" :description "edit an existing oneliner" :handler #'modify/redraft/handler)) @@ -26,7 +26,7 @@ (defun modify/flag/command () (cli:make-command :name "flag" - :usage "<IDENTIFIER>" + :usage "<identifier>" :description "flag a oneliner as potentially wrong or hazardous" :handler #'modify/flag/handler)) @@ -36,7 +36,7 @@ (defun modify/unflag/command () (cli:make-command :name "unflag" - :usage "<IDENTIFIER>" + :usage "<identifier>" :description "remove flagged status from a oneliner" :handler #'modify/unflag/handler)) @@ -46,7 +46,7 @@ (defun modify/lock/command () (cli:make-command :name "lock" - :usage "<IDENTIFIER>" + :usage "<identifier>" :description "lock a oneliner from being changed (admin only)" :handler #'modify/lock/handler)) @@ -56,7 +56,7 @@ (defun modify/unlock/command () (cli:make-command :name "unlock" - :usage "<IDENTIFIER>" + :usage "<identifier>" :description "unlock a locked oneliner, allowing it to be modified again" :handler #'modify/unlock/handler)) @@ -66,7 +66,7 @@ (defun modify/delete/command () (cli:make-command :name "delete" - :usage "<IDENTIFIER>" + :usage "<identifier>" :description "delete a oneliner from the server.")) (defun modify/subcommands () |