From 69d48f76c7cee843c62e7161f98a219699cc08c0 Mon Sep 17 00:00:00 2001 From: Ian Hattendorf Date: Tue, 17 Apr 2018 21:50:11 -0700 Subject: [PATCH] E.14 an->a is->are fixes --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 2de50c7..5d735dd 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -15245,7 +15245,7 @@ The standard-library classes derived from `exception` should be used only as bas ##### Enforcement -Catch `throw` and `catch` of a built-in type. Maybe warn about `throw` and `catch` using an standard-library `exception` type. Obviously, exceptions derived from the `std::exception` hierarchy is fine. +Catch `throw` and `catch` of a built-in type. Maybe warn about `throw` and `catch` using a standard-library `exception` type. Obviously, exceptions derived from the `std::exception` hierarchy are fine. ### E.15: Catch exceptions from a hierarchy by reference