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