diff --git a/src/rodo.rkt b/src/rodo.rkt index fcd9d24..d72346f 100644 --- a/src/rodo.rkt +++ b/src/rodo.rkt @@ -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)