From d423e855b519fa58f05df5290287351600a62a67 Mon Sep 17 00:00:00 2001 From: Michael Park Date: Fri, 18 Dec 2015 16:23:27 +0000 Subject: [PATCH] C.ctor: Fixed typo. --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 0a4a6c4..d7ab49f 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -3883,7 +3883,7 @@ A destructor (either user-defined or compiler-generated) is implicitly declared ## C.ctor: Constructors -A constructor defined how an object is initialized (constructed). +A constructor defines how an object is initialized (constructed). ### C.40: Define a constructor if a class has an invariant