diff options
author | jgart <jgart@dismail.de> | 2023-06-12 20:47:44 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2023-06-13 09:16:29 -0400 |
commit | 4bb91f441acba09dadcaa6544d2f28de798e5b19 (patch) | |
tree | 609752e027a3394dbd64aab23f16b034ac8dd43e | |
parent | 72cfe2acc356f123ffbd47e9bd561698c83dce98 (diff) |
ui: Fix typo in leave function docstring.
* haunt/ui.scm: Fix typo.
-rw-r--r-- | haunt/ui.scm | 2 |
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)) |