From 4e61010c271fc32b5cca8eb643c9a9adce664fd1 Mon Sep 17 00:00:00 2001 From: apenn-msft <62863214+apenn-msft@users.noreply.github.com> Date: Thu, 23 Apr 2020 02:57:54 -0700 Subject: [PATCH] keep wording more consistent .... if a bit more monotonous, but that's ok. --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 2afd806..0959852 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -19197,7 +19197,7 @@ Nevertheless, the guidance is to use the quoted form for including files that ex #include // From the standard library, requires the <> form #include // A file that is not locally relative, included from another project; use the <> form #include "foo.h" // A file locally relative to foo.cpp, use the "" form - #include "foo_utils/utils.h" // A file locally relative to foo.cpp, use "" form + #include "foo_utils/utils.h" // A file locally relative to foo.cpp, use the "" form ##### Note