From 33798548a62ca1610252a583875690e94c8619f6 Mon Sep 17 00:00:00 2001 From: Colin Okay Date: Tue, 9 Aug 2022 10:18:03 -0500 Subject: [change] some the useage statements for cli interface --- app/modify.lisp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'app/modify.lisp') 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 "" + :usage "" :description "edit an existing oneliner" :handler #'modify/redraft/handler)) @@ -26,7 +26,7 @@ (defun modify/flag/command () (cli:make-command :name "flag" - :usage "" + :usage "" :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 "" + :usage "" :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 "" + :usage "" :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 "" + :usage "" :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 "" + :usage "" :description "delete a oneliner from the server.")) (defun modify/subcommands () -- cgit v1.2.3