From 1143bfab7929d4b799e8eb9cb7c212247edbf696 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Thu, 20 Jul 2017 12:35:16 +0100 Subject: [PATCH] Remove confusing "copy" in discussion of move ops Fixes #989 --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index b966056..33ee2b8 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -5976,7 +5976,7 @@ A non-throwing move will be used more efficiently by standard-library and langua int sz; }; -These copy operations do not throw. +These operations do not throw. ##### Example, bad