From 8e8d43712395e0f77988435e47c2ee003bce3b69 Mon Sep 17 00:00:00 2001 From: Marat Tanalin Date: Fri, 26 Feb 2016 23:37:26 +0300 Subject: [PATCH] Typos expecially => especially (This is expecially important for) deafault => default (This is what a deafault == would do) + `==` marked-down as code. --- CppCoreGuidelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 718d108..397ff5d 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -3398,7 +3398,7 @@ Placing them in the same namespace as the class makes their relationship to the ##### Note -This is expecially important for [overloaded operators](#Ro-namespace). +This is especially important for [overloaded operators](#Ro-namespace). ##### Enforcement @@ -6664,7 +6664,7 @@ Avoiding inconsistent definition in different namespaces bool s==s; -This is what a deafault == would do, if we had such defaults. +This is what a default `==` would do, if we had such defaults. ##### Example