From 866abafb07fc770470f48f5e2844091a67249b09 Mon Sep 17 00:00:00 2001 From: ypyf Date: Mon, 15 Aug 2016 13:54:21 +0800 Subject: [PATCH] fixed typo --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 373dd20..bbbe4b8 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -16861,7 +16861,7 @@ This is not evil. ### NL.7: Make the length of a name roughly proportional to the length of its scope -**Rationale**: The larger the scope the greaterthe chance of confusion and of an unintended name clash. +**Rationale**: The larger the scope the greater the chance of confusion and of an unintended name clash. ##### Example