From 17c7ba9b8b543303ec817d757066d31ae5215e50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Magnenat?= Date: Tue, 15 Nov 2016 10:25:34 +0100 Subject: [PATCH] Fixed missing ` --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 6b6ee80..6ff6324 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -1010,7 +1010,7 @@ Instead, we could use `vector`: 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. -that is needed to implement key abstractions, such as `vector`, `span`, `lock_guard, and `future`, we use the libraries +that is 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) with the challenge of repeatedly getting low-level code well.