From 5c3006b60f6af3c3a40020f84c0107a2147b5d88 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Tue, 9 Jan 2018 22:27:14 +0000 Subject: [PATCH] Change "untended" to "unintended" in C.9 --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index c6fbcad..d79642b 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -4180,7 +4180,7 @@ Flag classes declared with `struct` if there is a `private` or `protected` membe Encapsulation. Information hiding. -Minimize the chance of untended access. +Minimize the chance of unintended access. This simplifies maintenance. ##### Example