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