From efb284388f6c5952eb25843e8b1d4ba39a4cbef8 Mon Sep 17 00:00:00 2001 From: Severin Meyer Date: Thu, 17 Nov 2016 14:48:43 +0100 Subject: [PATCH] C.defop: Fix typo in introductory text --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 7b91bd2..9a28b7d 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -3935,7 +3935,7 @@ Other default operations rules: ## C.defop: Default Operations -By default, the language supply the default operations with their default semantics. +By default, the language supplies the default operations with their default semantics. However, a programmer can disable or replace these defaults. ### C.20: If you can avoid defining default operations, do