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