diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 8e4e443..77a56b6 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -3843,8 +3843,8 @@ The common action gets tedious to write and may accidentally not be common. ## C.copy: Copy and move -Value type should generally be copyable, but interfaces in a class hierarchy should not. -Resource handles, may or may not be copyable. +Value types should generally be copyable, but interfaces in a class hierarchy should not. +Resource handles may or may not be copyable. Types can be defined to move for logical as well as performance reasons.