From cb08aa24a40720ede78af51ab376542d1fbfe7c1 Mon Sep 17 00:00:00 2001 From: Sergey Zubkov Date: Mon, 25 Jun 2018 16:16:40 -0400 Subject: [PATCH] s/more that two/more than two --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index d2c0097..6319138 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -12576,7 +12576,7 @@ Consequently, it is best to be specific about the comparison. // ... } -Always remember that an integer can have more that two values. +Always remember that an integer can have more than two values. ##### Example, bad