From 45ad5c46280bf68cf4bfaffbd584509877ec2ec8 Mon Sep 17 00:00:00 2001 From: Sergey Zubkov Date: Mon, 29 Jun 2020 14:17:02 -0400 Subject: [PATCH] C.49: fix typo in example (closes #1642) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 31abd56..3f0d5a4 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -5631,7 +5631,7 @@ as [a more general way to present arguments to a function](#Rstr-view): class D { // Good string s1; public: - A(string_view v) : s1{v} { } // GOOD: directly construct + D(string_view v) : s1{v} { } // GOOD: directly construct // ... }; -- 2.11.4.GIT