From 24b733f0b96b8162dcf54907c2e8f93b25c371f3 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Wed, 12 Jul 2017 13:38:40 +0100 Subject: [PATCH] NL.17 fix typo Fixes #982 --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index eb80f30..e78aab1 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -20313,7 +20313,7 @@ Use separate lines for each statement, the branches of an `if`, and the body of ##### Note -The `{` for a `class` and a `struct` in *not* on a separate line, but the `{` for a function is. +The `{` for a `class` and a `struct` is *not* on a separate line, but the `{` for a function is. ##### Note