From bc3d47768ab180d792179ba792d50cc1b3789636 Mon Sep 17 00:00:00 2001 From: Sergey Zubkov Date: Mon, 7 Dec 2015 22:21:36 -0500 Subject: [PATCH] typs: s/literated/littered s/likelyhood/likelihood --- CppCoreGuidelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 86a6948..9d72b58 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -8181,8 +8181,8 @@ Macros do not obey scope rules. ##### Note Avoid macros if you can: [ES.30](#Res-macros), [ES.31](#Res-macros2), and [ES.32](#Res-ALL_CAPS). -However, there are billions of lines of code literated with macros and a long tradition for using and overusing macros. -If you are forced to use macros, use long names and supposedly unique prefixes (e.g., your organization's name) to lower the likelyhood of a clash. +However, there are billions of lines of code littered with macros and a long tradition for using and overusing macros. +If you are forced to use macros, use long names and supposedly unique prefixes (e.g., your organization's name) to lower the likelihood of a clash. ##### Enforcement