From 652b71b2c0a4273086a2ea62412307046b4eb385 Mon Sep 17 00:00:00 2001 From: Juha Reunanen Date: Tue, 6 Apr 2021 05:24:33 +0300 Subject: [PATCH] F.20: Improve language just a bit (#1768) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 054e144..92c1d86 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -3087,7 +3087,7 @@ Such older advice is now obsolete; it does not add value, and it interferes with } The argument for adding `const` to a return value is that it prevents (very rare) accidental access to a temporary. -The argument against is prevents (very frequent) use of move semantics. +The argument against is that it prevents (very frequent) use of move semantics. ##### Exceptions -- GitLab