diff options
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 () |