From b831fedb4a1ed4e478eee945d57b449d854edc7c Mon Sep 17 00:00:00 2001 From: Alexolut Date: Tue, 15 Dec 2015 12:06:19 +0300 Subject: [PATCH] fixed typos --- CppCoreGuidelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 88dc76f..ff31d95 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -12111,7 +12111,7 @@ For writing to a file, there is rarely a need to `flush`. ##### Note Apart from the (occasionally important) issue of performance, -the choice between `"\\n"` and `endl` is almost completely aestetic. +the choice between `"\\n"` and `endl` is almost completely aesthetic. ## SL.regex: Regex @@ -12465,7 +12465,7 @@ Before a variable has been initialized, it does not contain a deterministic vali struct X { int i; }; X x; - use(x); // BAD, x hs not been initialized + use(x); // BAD, x has not been initialized X x2{}; // GOOD use(x2);