fixed help message
parent
fbc610bab3
commit
b8b1fcec4c
|
@ -220,7 +220,7 @@
|
|||
program-path) newline
|
||||
(format " ~a - Adds an item to your list." command-add) newline
|
||||
(format " ~a - Prints a numbered list of the items you've added." command-ls) newline
|
||||
(format " ~a - Removes an item from your list." command-rm)
|
||||
(format " ~a - Removes an item from your list." command-rm) newline
|
||||
(format " ~a - Replaces the contents of an item with new text." command-update)
|
||||
double-newline
|
||||
|
||||
|
@ -229,7 +229,7 @@
|
|||
(format " ~a ~a" program-name command-init) newline
|
||||
(format " ~a ~a \"You are wonderful\"" program-name command-add) newline
|
||||
(format " ~a ~a" program-name command-ls) newline
|
||||
(format " ~a ~a 2" program-name command-rm)
|
||||
(format " ~a ~a 2" program-name command-rm) newline
|
||||
(format " ~a ~a 2 \"This is new text!\"" program-name command-update))))
|
||||
|
||||
(define (process-args vectorof-args)
|
||||
|
|
Loading…
Reference in New Issue