From d49c720e98a914de4a21e6b8618dd4102c0a0139 Mon Sep 17 00:00:00 2001 From: Ian Hattendorf Date: Tue, 17 Apr 2018 16:26:35 -0700 Subject: [PATCH] Fix typo in error handling intro --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 5d735dd..c00bb8e 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -14782,7 +14782,7 @@ The rules are designed to help avoid several kinds of errors: * Resource leaks (including memory leaks) * Bounds errors * Lifetime errors (e.g., accessing an object after is has been `delete`d) -* Complexity errors (logical errors make likely by overly complex expression of ideas) +* Complexity errors (logical errors made likely by overly complex expression of ideas) * Interface errors (e.g., an unexpected value is passed through an interface) Error-handling rule summary: