From fc383d6641b1d7a2b4302d263b8f1688f68d238e Mon Sep 17 00:00:00 2001 From: hsutter Date: Thu, 27 Feb 2020 11:16:46 -0800 Subject: [PATCH] Updated #1570 Typo --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.