diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index c1184c5..72ea00d 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -5598,7 +5598,7 @@ An initialization explicitly states that initialization, rather than assignment, ##### Example, better still -Instead of those `const char*`s we could use `gsl::string_span or (in C++17) `std::string_view` +Instead of those `const char*`s we could use `gsl::string_span` or (in C++17) `std::string_view` as [a more general way to present arguments to a function](#Rstr-view): class D { // Good