From 1cd545aed5d24506be71a4024661787f856bdf1e Mon Sep 17 00:00:00 2001 From: hg <36822348+hg@users.noreply.github.com> Date: Tue, 25 Jun 2019 23:30:38 +0600 Subject: [PATCH] Remove extra backtick in ES.23 (#1453) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 005cb51..58cab93 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -10717,7 +10717,7 @@ Use `={...}` if you really want an `initializer_list` `={}` gives copy initialization whereas `{}` gives direct initialization. Like the distinction between copy-initialization and direct-initialization itself, this can lead to surprises. -`{}` accepts `explicit` constructors; `={}` does not`. For example: +`{}` accepts `explicit` constructors; `={}` does not. For example: struct Z { explicit Z() {} };