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 // ... };