diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md
index ec4370a..05343fc 100644
--- a/CppCoreGuidelines.md
+++ b/CppCoreGuidelines.md
@@ -4290,8 +4290,8 @@ Make sure that every member of the derived class is initialized.
## 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.
### C.60: Make copy assignment non-`virtual`, take the parameter by `const&`, and return by non-`const&`