From d94880a4dad2cffb27c63f3b94e5157aeef24ff3 Mon Sep 17 00:00:00 2001 From: Barney <86712892+BigBoyBarney@users.noreply.github.com> Date: Thu, 17 Oct 2024 09:30:51 +0200 Subject: [PATCH] Updated to Exception Handling page to use neutral phrasing --- docs/syntax_and_semantics/exception_handling.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/syntax_and_semantics/exception_handling.md b/docs/syntax_and_semantics/exception_handling.md index 7f84e530a..0de53faf6 100644 --- a/docs/syntax_and_semantics/exception_handling.md +++ b/docs/syntax_and_semantics/exception_handling.md @@ -255,4 +255,4 @@ array[4] # raises because of IndexError array[4]? # returns nil because of index out of bounds ``` -The usual convention is to provide an alternative "question" method to signal that this variant of the method returns `nil` instead of raising. This lets the user choose whether she wants to deal with exceptions or with `nil`. Note, however, that this is not available for every method out there, as exceptions are still the preferred way because they don't pollute the code with error handling logic. +The usual convention is to provide an alternative "question" method to signal that this variant of the method returns `nil` instead of raising. This lets the user choose whether they want to deal with exceptions or with `nil`. Note, however, that this is not available for every method out there, as exceptions are still the preferred way because they don't pollute the code with error handling logic.