keep wording more consistent

.... if a bit more monotonous, but that's ok.
This commit is contained in:
apenn-msft 2020-04-23 02:57:54 -07:00 committed by GitHub
parent 426ac8747d
commit 4e61010c27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19197,7 +19197,7 @@ Nevertheless, the guidance is to use the quoted form for including files that ex
#include <string> // From the standard library, requires the <> form
#include <some_library/common.h> // 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