From 54e94319b30175688ddf51f5e31177837b7ce31c Mon Sep 17 00:00:00 2001 From: Saba Saba Date: Thu, 9 Feb 2023 12:26:19 -0500 Subject: [PATCH] Fleshed out help instructions --- git-repl.cl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/git-repl.cl b/git-repl.cl index daef446..5577bce 100644 --- a/git-repl.cl +++ b/git-repl.cl @@ -119,9 +119,10 @@ (defun-public help () "Prints out usage instructions for this REPL" (write-line "This is a Common Lisp REPL.") - (write-line "Execute (commands) for a list of commands.") + (write-line "Run (commands) for a list of commands.") (write-line "Use (describe 'command-name) for documentation on a given command.") - (write-line "Execute (help) to see these instructions again.") + (write-line "Run (help) to see these instructions again.") + (write-line "Run (exit) to exit gracefully.") nil) (defun main () -- 2.20.1