From 7d82c95191ebe736b0dad6826bee44ce70b8cbbe Mon Sep 17 00:00:00 2001 From: David Mitchell Date: Tue, 29 Sep 2015 16:50:55 -0700 Subject: [PATCH] Add missing punctuation. --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 27f8e3a..568ad60 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -2973,7 +2973,7 @@ These operations disagree about copy semantics. This will lead to confusion and ## C.dtor: Destructors -Does this class need a destructor is a surprisingly powerful design question. +"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).