diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index a3faf9c..76a4fe6 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -5892,7 +5892,7 @@ After a copy `x` and `y` can be independent objects (value semantics, the way no ##### Note -Prefer copy semantics unless you are building a "smart pointer". Value semantics is the simplest to reason about and what the standard-library facilities expect. +Prefer value semantics unless you are building a "smart pointer". Value semantics is the simplest to reason about and what the standard-library facilities expect. ##### Enforcement