From 1d324efc7d0bec504ef31c370003a73bc395377d Mon Sep 17 00:00:00 2001 From: Claus Jensby Madsen Date: Wed, 23 Sep 2015 16:56:48 +0200 Subject: [PATCH] Fix typo in E.17 --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index f28366f..a6b2a11 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -8560,7 +8560,7 @@ Instead, use **Reason**: Catching an exception in a function that cannot take a meaningful recovery action leads to complexity and waste. Let an exception propagate until it reaches a function that can handle it. -Let cleanup actions on the unwinding path be handles by [RAII](#Re-raii). +Let cleanup actions on the unwinding path be handled by [RAII](#Re-raii). **Example; don't**: