From 5560508b28b5ceb8e83c1db4afe78c1f86a78d69 Mon Sep 17 00:00:00 2001 From: David Mitchell Date: Tue, 29 Sep 2015 16:48:24 -0700 Subject: [PATCH] Fix verb agreement. --- CppCoreGuidelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 27f8e3a..cf7fd29 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -2944,8 +2944,8 @@ If you don't want a default operation, suppress it with `=delete`. ### C.22: Make default operations consistent -**Reason**: The default operations are conceptually a matched set. Their semantics is interrelated. -Users will be surprised if copy/move construction and copy/move assignment do logically different things. Users will be surprised if constructors and destructors do not provide a consistent view of resource management. Users will be surprised if copy and move doesn't reflect the way constructors and destructors work. +**Reason**: The default operations are conceptually a matched set. Their semantics are interrelated. +Users will be surprised if copy/move construction and copy/move assignment do logically different things. Users will be surprised if constructors and destructors do not provide a consistent view of resource management. Users will be surprised if copy and move don't reflect the way constructors and destructors work. **Example; bad**: