diff options
author | Colin Okay <colin@cicadas.surf> | 2022-08-05 13:05:32 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-08-05 13:05:32 -0500 |
commit | 84aab5128d98600f5210de98e1e480ca8fddffd6 (patch) | |
tree | daf1b6eb6120fd24ab3714ec79aeb3d92023c2c9 /app/run.lisp | |
parent | 71637c96bd277364306abebf4add4e34a93325ff (diff) |
[fix] typos
Diffstat (limited to 'app/run.lisp')
-rw-r--r-- | app/run.lisp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/run.lisp b/app/run.lisp index 556b719..16dbde6 100644 --- a/app/run.lisp +++ b/app/run.lisp @@ -4,20 +4,20 @@ (defun run/options () (list - (make-option + (cli:make-option :integer :short-name #\t :long-name "timeout" :key :timeout :initial-value 1 :description "Seconds to wait for output before giving up.") - (make-option + (cli:make-option :flag :short-name #\v :long-name "verbose" :key :verbose :description "echoes the oneliner text that is about to be run") - (make-option + (cli:make-option :flag :short-name #\c :long-name "confirm" |