From 5e636657d9bfcf7f431e90b2c3a9afd0645190ba Mon Sep 17 00:00:00 2001 From: Tyler Young Date: Mon, 8 Jul 2019 21:52:15 -0500 Subject: [PATCH] Fixes typo: "code based" -> "code bases" --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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