From 3e61563a0c4550bee727cbbff3b44fea6081764c Mon Sep 17 00:00:00 2001 From: Sergey Zubkov Date: Thu, 28 Jan 2021 22:16:03 -0500 Subject: [PATCH] make hunspell happy --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index cd9a5e9..55901df 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -2160,7 +2160,7 @@ are often filled in by name at the call site. ##### Reason -Abstract classes that are empty (have no nonstatic member data) are more likely to be stable than base classes with state. +Abstract classes that are empty (have no non-static member data) are more likely to be stable than base classes with state. ##### Example, bad