From e4cde0a15c62c99ffa421849d334aa04ef9cef20 Mon Sep 17 00:00:00 2001 From: Steve Date: Sat, 14 Jun 2025 17:24:11 +0300 Subject: [PATCH] fix typos and wording on sigint section of docs - fix typos where SIGINT is misspelt as SIGING - fix wording on the docs to reflect that the session will, by default, not be exited when Ctrl-C is input --- doc/Index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/Index.md b/doc/Index.md index 172fdebc9..f64e6047e 100644 --- a/doc/Index.md +++ b/doc/Index.md @@ -256,11 +256,11 @@ During the session, method `conf.ignore_eof?` returns the setting, and method `c ### SIGINT -By default, `IRB.conf[:IGNORE_SIGINT]` is `true`, which means that typing the interrupt character `Ctrl-C` causes the session to exit. +By default, `IRB.conf[:IGNORE_SIGINT]` is `true`, which means that typing the interrupt character `Ctrl-C` does not cause the session to exit. -You can reverse that behavior by adding `IRB.conf[:IGNORE_SIGING] = false` to the configuration file. +You can reverse that behavior by adding `IRB.conf[:IGNORE_SIGINT] = false` to the configuration file. -During the session, method `conf.ignore_siging?` returns the setting, and method `conf.ignore_sigint = *boolean*` sets it. +During the session, method `conf.ignore_sigint?` returns the setting, and method `conf.ignore_sigint = *boolean*` sets it. ### Automatic Completion