[clang] [clang][docs] Fix include path in InternalsManual (PR #209458)
via cfe-commits
cfe-commits at lists.llvm.org
Tue Jul 14 05:18:11 PDT 2026
llvmorg-github-actions[bot] wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-clang
Author: BohdanYehorov
<details>
<summary>Changes</summary>
The paths `include/Basic/StmtNodes.td` and `include/AST/Expr*.h` in the Clang Internals Manual are incorrect.
---
Full diff: https://github.com/llvm/llvm-project/pull/209458.diff
1 Files Affected:
- (modified) clang/docs/InternalsManual.rst (+2-2)
``````````diff
diff --git a/clang/docs/InternalsManual.rst b/clang/docs/InternalsManual.rst
index 27adfae06416d..4b263565bc27f 100644
--- a/clang/docs/InternalsManual.rst
+++ b/clang/docs/InternalsManual.rst
@@ -3332,8 +3332,8 @@ are similar.
shouldn't impact your testing.
#. Introduce an AST node for your new expression. This starts with declaring
- the node in ``include/Basic/StmtNodes.td`` and creating a new class for your
- expression in the appropriate ``include/AST/Expr*.h`` header. It's best to
+ the node in ``include/clang/Basic/StmtNodes.td`` and creating a new class for your
+ expression in the appropriate ``include/clang/AST/Expr*.h`` header. It's best to
look at the class for a similar expression to get ideas, and there are some
specific things to watch for:
``````````
</details>
https://github.com/llvm/llvm-project/pull/209458
More information about the cfe-commits
mailing list