From e30543d06aea5e162f8af60d8fcdd13ddd734e44 Mon Sep 17 00:00:00 2001 From: Sergey Zubkov Date: Sat, 7 May 2022 23:02:44 -0400 Subject: [PATCH] NL dropping parenthesized bit, per commit comment --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 4a978b3..ffdebe8 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -21238,7 +21238,7 @@ Many of them are very similar to what became part of the ISO C++ standard in C++ * `Unique_pointer` // A type that matches `Pointer`, is movable, and is not copyable * `Shared_pointer` // A type that matches `Pointer`, and is copyable -# NL: Naming and layout suggestions (if you don't already have one) +# NL: Naming and layout suggestions Consistent naming and layout are helpful. If for no other reason because it minimizes "my style is better than your style" arguments.