From 2056a14da7b349de7270c425d5153f41dbf8210d Mon Sep 17 00:00:00 2001 From: Amir Livneh Date: Tue, 26 Feb 2019 17:35:52 -0500 Subject: [PATCH] Fix grammar in ES.50 (#1352) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 39baa4f..cc9e948 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -11852,7 +11852,7 @@ State that `cache` is mutable even for a `const` object: mutable Cache cache; }; -An alternative solution would to store a pointer to the `cache`: +An alternative solution would be to store a pointer to the `cache`: class X { // OK, but slightly messier solution public: