From 2f066bb6a2653cc84b4f91c41f0d304aaeec1144 Mon Sep 17 00:00:00 2001 From: Tony Magro Date: Fri, 18 Sep 2015 13:28:47 -0500 Subject: [PATCH] Fix typo in C.3 example --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index f4769f7..a46495f 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -2704,7 +2704,7 @@ but class Date { // ... some representation ... - pulic: + public: Date(); Date(int yy, Month mm, char dd); // validate that {yy,mm,dd} is a valid date and initialize