From 632e4ef544a9536106f687b7bcfcbe66776aa083 Mon Sep 17 00:00:00 2001 From: David Mitchell Date: Tue, 29 Sep 2015 14:55:43 -0700 Subject: [PATCH] Fix typo. --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 27f8e3a..312584b 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -2876,7 +2876,7 @@ Other default operations rules: ## C.defop: Default Operations By default, the language supply the default operations with their default semantics. -However, a programmer can disalble or replace these defaults. +However, a programmer can disable or replace these defaults. ### C.20: If you can avoid defining default operations, do