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