diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 21b2e6b..f2259fd 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -5488,7 +5488,7 @@ Copy and move constructors should not be made `explicit` because they do not per ##### Enforcement -(Simple) Single-argument constructors should be declared `explicit`. Good single argument non-`explicit` constructors are rare in most code based. Warn for all that are not on a "positive list". +(Simple) Single-argument constructors should be declared `explicit`. Good single argument non-`explicit` constructors are rare in most code bases. Warn for all that are not on a "positive list". ### C.47: Define and initialize member variables in the order of member declaration