From 7d092e37aadb9506b30e939fce164f613fadddb9 Mon Sep 17 00:00:00 2001 From: Amir Livneh Date: Sat, 9 Mar 2019 17:32:40 -0500 Subject: [PATCH] Remove extra parenthesis (#1375) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index b169f82..41b0475 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -14774,7 +14774,7 @@ Flag all unnamed `lock_guard`s and `unique_lock`s. It should be obvious to a reader that the data is to be guarded and how. This decreases the chance of the wrong mutex being locked, or the mutex not being locked. Using a `synchronized_value` ensures that the data has a mutex, and the right mutex is locked when the data is accessed. -See the [WG21 proposal](http://wg21.link/p0290)) to add `synchronized_value` to a future TS or revision of the C++ standard. +See the [WG21 proposal](http://wg21.link/p0290) to add `synchronized_value` to a future TS or revision of the C++ standard. ##### Example