From bc5455537fc07b325fd16a0e09bc220ca9e5f759 Mon Sep 17 00:00:00 2001 From: Abhiseck Paira Date: Thu, 9 Jun 2022 17:16:47 +0530 Subject: ui: Fix typo in 'leave' procedure docstring. From 08e10de21fab5438fbaa82138eb78c1de074e4eb Mon Sep 17 00:00:00 2001 From: Abhiseck Paira 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. --- shroud/ui.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) -- cgit v1.2.3