From b8b1fcec4c91929e9ecc4f5f0136838d29b73a07 Mon Sep 17 00:00:00 2001 From: Jesse Laprade Date: Thu, 15 Apr 2021 22:20:26 -0400 Subject: [PATCH] fixed help message --- src/rodo.rkt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)