C.49: fix typo in example (closes #1642)

This commit is contained in:
Sergey Zubkov
2020-06-29 14:17:02 -04:00
parent 2477f275dc
commit 45ad5c4628

View File

@@ -5631,7 +5631,7 @@ as [a more general way to present arguments to a function](#Rstr-view):
class D { // Good class D { // Good
string s1; string s1;
public: public:
A(string_view v) : s1{v} { } // GOOD: directly construct D(string_view v) : s1{v} { } // GOOD: directly construct
// ... // ...
}; };