diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 5b0581e..a81e4e4 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -19190,7 +19190,7 @@ The [standard](http://eel.is/c++draft/cpp.include) provides flexibility for comp the two forms of `#include` selected using the angle (`<>`) or quoted (`""`) syntax. Vendors take advantage of this and use different search algorithms and methods for specifying the include path. -Never the less, the guidance is to use the angle form when possible. This supports the fact that the +Nevertheless, the guidance is to use the angle form when possible. This supports the fact that the standard library headers must be included this way, is more likely to create portable code, and enables the quoted form for other uses. For example being clear about the locality of the header relative to files that includes it or in scenarios where the different search algorithm is required.