From 58f91d7cf10f041ee2cea02425eaf88869644217 Mon Sep 17 00:00:00 2001 From: Juha Reunanen Date: Tue, 6 Apr 2021 16:47:06 +0300 Subject: [PATCH] C.86: Improve language just a bit (#1774) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index b7d9152..bb115b3 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -6570,7 +6570,7 @@ If a `swap` tries to exit with an exception, it's a bad design error and the pro ##### Reason Asymmetric treatment of operands is surprising and a source of errors where conversions are possible. -`==` is a fundamental operations and programmers should be able to use it without fear of failure. +`==` is a fundamental operation and programmers should be able to use it without fear of failure. ##### Example -- GitLab