diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 8327ab3..670a8e6 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -16408,7 +16408,7 @@ Hard. ##### Example (using TS concepts) - vector v; + vector v{ "abc", "xyz" }; auto& x = v.front(); // bad String& s = v.front(); // good (String is a GSL concept)