From 9f0e9fe0a3636abc14908bc10658089a44aef3ac Mon Sep 17 00:00:00 2001 From: Amir Livneh Date: Tue, 26 Feb 2019 17:29:00 -0500 Subject: [PATCH] Fix grammar (#1344) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 13ffbe1..58ceefa 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -10713,7 +10713,7 @@ Like the distinction between copy-initialization and direct-initialization itsel Z z1{}; // OK: direct initialization, so we use explicit constructor Z z2 = {}; // error: copy initialization, so we cannot use the explicit constructor -Use plain `{}`-initialization unless you specifically wants to disable explicit constructors. +Use plain `{}`-initialization unless you specifically want to disable explicit constructors. ##### Note