From 378370e20deafdfd94e263f3deb45ceeffd929e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Sch=C3=A4pers?= Date: Tue, 1 Aug 2017 12:24:51 +0200 Subject: [PATCH] Fix typo in ES.84 --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 83d9ba1..5dddc01 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -11151,7 +11151,7 @@ To avoid unpleasant surprises. This declares an unnamed `lock` object that immediately goes out of scope at the point of the semicolon. This is not an uncommon mistake. In particular, this particular example can lead to hard-to find race conditions. -There are exceedingly clever used of this "idiom", but they are far rarer than the mistakes. +There are exceedingly clever uses of this "idiom", but they are far rarer than the mistakes. ##### Note