From 66c0348d1926fbacdbfc203310c42536056bd164 Mon Sep 17 00:00:00 2001 From: Severin Meyer Date: Thu, 17 Nov 2016 14:51:08 +0100 Subject: [PATCH] C.80: Fix typo in text --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index bfd0cf8..6adce97 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -5512,7 +5512,7 @@ comparisons, `swap`, and `hash`. ##### Reason -The compiler is more likely to get the default semantics right and you cannot implement these function better than the compiler. +The compiler is more likely to get the default semantics right and you cannot implement these functions better than the compiler. ##### Example