From 8273a758986c4a1f3322d9ad9d5bbef4b5691fe2 Mon Sep 17 00:00:00 2001 From: Kinfe Michael Tariku <65047246+Kinfe123@users.noreply.github.com> Date: Mon, 27 May 2024 11:18:13 +0300 Subject: [PATCH] Update README.md fix: prompt word duplicated --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5980812..7ba8921 100644 --- a/README.md +++ b/README.md @@ -434,7 +434,7 @@ prompt.stop(); ## Disabling prompt's built-in SIGINT handling -By default, prompt prompt binds a process-killing event handler to the SIGINT event (CTRL+C). This allows easily exiting from prompts, but can prevent an app from executing other event handlers when an interrupt is received. In order to override this default behavior, pass a `{noHandleSIGINT: true}` option into `prompt.start`. +By default, prompt binds a process-killing event handler to the SIGINT event (CTRL+C). This allows easily exiting from prompts, but can prevent an app from executing other event handlers when an interrupt is received. In order to override this default behavior, pass a `{noHandleSIGINT: true}` option into `prompt.start`. ``` js //