From d5667c5f8a747ecf615fd416252e13f88f995e5a Mon Sep 17 00:00:00 2001 From: Robert Andrzejuk Date: Sat, 3 Jun 2017 23:05:44 +0200 Subject: [PATCH] Minor typo I think a minor typo got itself in ... the second 'string_span' should be string_view. --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 6d7e804..4c74c52 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -18604,7 +18604,7 @@ In C++17, we might use `string_view` as the argument, rather than `const string* return res; } -The `gsl::string_span` is a current alternative offering most of the benefits of `string_span` for simple examples: +The `gsl::string_span` is a current alternative offering most of the benefits of `std::string_view` for simple examples: vector read_until(string_span terminator) {