From 41f1c30d1c6d5ef8868f3869bd30f7d3bd0ab380 Mon Sep 17 00:00:00 2001 From: Andreas Scherer Date: Sun, 18 Oct 2015 10:48:40 +0200 Subject: [PATCH] Add missing closing brace. --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index f113522..7c4e775 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -3393,7 +3393,7 @@ These operations disagree about copy semantics. This will lead to confusion and "Does this class need a destructor?" is a surprisingly powerful design question. For most classes the answer is "no" either because the class holds no resources or because destruction is handled by [the rule of zero](#Rc-zero); that is, its members can take care of themselves as concerns destruction. -If the answer is "yes", much of the design of the class follows (see [the rule of five](#Rc-five). +If the answer is "yes", much of the design of the class follows (see [the rule of five](#Rc-five)). ### C.30: Define a destructor if a class needs an explicit action at object destruction