From a2f26850c6c5a1dcc3d66e08bb64e44909a4afff Mon Sep 17 00:00:00 2001 From: Blake Heimann <43186444+BlakeHeimann@users.noreply.github.com> Date: Mon, 25 Oct 2021 06:16:30 -0500 Subject: [PATCH] Fixed grammatical error (#11604) Found a small grammatical error in the documentation of this particular file. --- doc/EXCEPTIONS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/EXCEPTIONS.md b/doc/EXCEPTIONS.md index 48a6017ed..d6e90988f 100644 --- a/doc/EXCEPTIONS.md +++ b/doc/EXCEPTIONS.md @@ -4,7 +4,7 @@ Introducing exceptions to an existing non-exception-based codebase can be perilous. The console was originally written in C at a time when C++ was relatively unused in the Windows operating system. As part of our project to modernize the Windows console, we converted to use C++, but still had an aversion to using exception-based error handling in -our code for fear that it introduce unexpected failures. However, the STL and other libraries like it are so useful that +our code for fear that it might introduce unexpected failures. However, the STL and other libraries like it are so useful that sometimes it's significantly simpler to use them. Given that, we have a set of rules that we follow when considering exception use.