diff options
author | Abhiseck Paira <abhiseckpaira@disroot.org> | 2022-06-09 17:16:47 +0530 |
---|---|---|
committer | David Thompson <dthompson@vistahigherlearning.com> | 2022-06-09 12:09:19 -0400 |
commit | bc5455537fc07b325fd16a0e09bc220ca9e5f759 (patch) | |
tree | a99f1eaf462c67aeb42b84f90c32dd7e22a5b93e | |
parent | 166d5718790f6457a88cbaf9699cb551d13b0587 (diff) |
ui: Fix typo in 'leave' procedure docstring.
From 08e10de21fab5438fbaa82138eb78c1de074e4eb Mon Sep 17 00:00:00 2001
From: Abhiseck Paira <abhiseckpaira@disroot.org>
Date: Thu, 9 Jun 2022 17:04:14 +0530
Subject: [PATCH] docs(shroud/ui.scm): fix typo in `leave' function docstring
In the docstring of the function `leave', replace "exist" with "exit".
* shroud/ui.scm: Doc fix.
-rw-r--r-- | shroud/ui.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shroud/ui.scm b/shroud/ui.scm index 31c66fa..51cb412 100644 --- a/shroud/ui.scm +++ b/shroud/ui.scm @@ -63,7 +63,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)) |