This commit is contained in:
hsutter 2019-08-01 11:52:22 -07:00
parent 5fdfb20b76
commit 122cda0bd2

View File

@ -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