From 29dedc49af8352e4cb9f0891ccf9b9accc7bf9b0 Mon Sep 17 00:00:00 2001 From: Louis Cloete <38226392+L0uisc@users.noreply.github.com> Date: Mon, 20 May 2019 09:14:08 +0200 Subject: [PATCH] Inserts a missing backtick in C.49 (#1428) Below heading "Example, better still" there was a missing backtick after gsl::string_span --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.11.4.GIT