From d46c678048ef82ba6e8dbccb470c600934bcbf10 Mon Sep 17 00:00:00 2001 From: beinhaerter <34543625+beinhaerter@users.noreply.github.com> Date: Mon, 22 Jul 2019 22:00:36 +0200 Subject: [PATCH] E.18: fix grammar (#1481) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 83d8ce8..e70a4ef 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -15727,7 +15727,7 @@ Let cleanup actions on the unwinding path be handled by [RAII](#Re-raii). ##### Reason - `try`/`catch` is verbose and non-trivial uses error-prone. + `try`/`catch` is verbose and non-trivial uses are error-prone. `try`/`catch` can be a sign of unsystematic and/or low-level resource management or error handling. ##### Example, Bad