summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjgart <jgart@dismail.de>2023-06-12 20:47:44 -0500
committerDavid Thompson <dthompson2@worcester.edu>2023-06-13 09:16:29 -0400
commit4bb91f441acba09dadcaa6544d2f28de798e5b19 (patch)
tree609752e027a3394dbd64aab23f16b034ac8dd43e
parent72cfe2acc356f123ffbd47e9bd561698c83dce98 (diff)
ui: Fix typo in leave function docstring.
* haunt/ui.scm: Fix typo.
-rw-r--r--haunt/ui.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/haunt/ui.scm b/haunt/ui.scm
index 55d9229..94ac9b0 100644
--- a/haunt/ui.scm
+++ b/haunt/ui.scm
@@ -81,7 +81,7 @@ There is NO WARRANTY, to the extent permitted by law.~%"
(exit 0))
(define (leave format-string . args)
- "Display error message and exist."
+ "Display error message and exit."
(apply format (current-error-port) format-string args)
(newline)
(exit 1))