[clang-tools-extra] two-or-so tiny documentation fixes/improvements in “main/clang-tools-extra/docs/modularize.rst” (PR #99256)
via cfe-commits
cfe-commits at lists.llvm.org
Tue Jul 16 16:21:15 PDT 2024
https://github.com/Abe149 created https://github.com/llvm/llvm-project/pull/99256
mainly, fixed “the Clang module mechanism doesn’t support headers the rely on other headers” => “the Clang module mechanism doesn’t support headers that rely on other headers”. [emphasis on “the” versus “that”]
>From acf79f6c2d0d0a6d446ed6bea2f7c36e033ae5c8 Mon Sep 17 00:00:00 2001
From: Abe <3038439+Abe149 at users.noreply.github.com>
Date: Tue, 16 Jul 2024 19:20:34 -0400
Subject: [PATCH] =?UTF-8?q?two-or-so=20tiny=20documentation=20fixes/improv?=
=?UTF-8?q?ements=20in=20=E2=80=9Cmain/clang-tools-extra/docs/modularize.r?=
=?UTF-8?q?st=E2=80=9D?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
mainly, fixed “the Clang module mechanism doesn’t support headers the rely on other headers” => “the Clang module mechanism doesn’t support headers that rely on other headers”. [emphasis on “the” versus “that”]
---
clang-tools-extra/docs/modularize.rst | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/clang-tools-extra/docs/modularize.rst b/clang-tools-extra/docs/modularize.rst
index 64ca8c99d4e8e..97fd33b958650 100644
--- a/clang-tools-extra/docs/modularize.rst
+++ b/clang-tools-extra/docs/modularize.rst
@@ -254,8 +254,8 @@ For example, with the same header list from above::
}
Note that headers with dependents will be ignored with a warning, as the
-Clang module mechanism doesn't support headers the rely on other headers
-to be included first.
+Clang module mechanism doesn't support headers that rely on other headers
+being included first.
The module map format defines some keywords which can't be used in module
names. If a header has one of these names, an underscore ('_') will be
More information about the cfe-commits
mailing list