From 7f909cc18ef409356d8af009c195783890553085 Mon Sep 17 00:00:00 2001 From: Leonardo Perez Pulido Date: Sun, 26 Nov 2017 10:03:48 -0400 Subject: [PATCH] Typo: add missing comma --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 5a946bc..cade30e 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -1108,7 +1108,7 @@ Instead, we could use `vector`: ##### Note The standards library and the GSL are examples of this philosophy. -For example, instead of messing with the arrays, unions, cast, tricky lifetime issues, `gsl::owner`, etc. +For example, instead of messing with the arrays, unions, cast, tricky lifetime issues, `gsl::owner`, etc., that are needed to implement key abstractions, such as `vector`, `span`, `lock_guard`, and `future`, we use the libraries designed and implemented by people with more time and expertise than we usually have. Similarly, we can and should design and implement more specialized libraries, rather than leaving the users (often ourselves)