From 7c11ac1acf8f4b97d991bb094faf3e9f7de26671 Mon Sep 17 00:00:00 2001 From: michaelz85 Date: Wed, 20 Dec 2017 17:46:50 +0100 Subject: [PATCH] fixed a word (should be 'that' not 'the') (#1107) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index f85f633..198d1a5 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -16401,7 +16401,7 @@ Ideally, that rule should be language supported by giving you comparison operato ##### Enforcement -* Flag classes the support "odd" subsets of a set of operators, e.g., `==` but not `!=` or `+` but not `-`. +* Flag classes that support "odd" subsets of a set of operators, e.g., `==` but not `!=` or `+` but not `-`. Yes, `std::string` is "odd", but it's too late to change that.