fixed help message

main
Jesse Laprade 2021-04-15 22:20:26 -04:00
parent fbc610bab3
commit b8b1fcec4c
1 changed files with 2 additions and 2 deletions

View File

@ -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)