From 63e5e23e2cfc30cd8b341826628f91c92daf06b4 Mon Sep 17 00:00:00 2001 From: Darren Shen Date: Sat, 14 Nov 2015 15:17:33 +1100 Subject: [PATCH] Fix NL.8 typo --- CppCoreGuidelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 682bd9f..6efe83a 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -12963,10 +12963,10 @@ Some conventions capitalize the first letter, some don't. ##### Note -Try to be consistent in your use of acronyms, lengths of identifiers: +Try to be consistent in your use of acronyms and lengths of identifiers: int mtbf {12}; - int mean_time_between_failor {12}; // make up your mind + int mean_time_between_failures {12}; // make up your mind ##### Enforcement