[clang] ac41c58 - [clang][docs] Fix include path in InternalsManual (#209458)
via cfe-commits
cfe-commits at lists.llvm.org
Mon Jul 20 05:20:15 PDT 2026
Author: BohdanYehorov
Date: 2026-07-20T12:20:10Z
New Revision: ac41c58f7b3b26a4bd4260d05afd7c3b2ccc3c72
URL: https://github.com/llvm/llvm-project/commit/ac41c58f7b3b26a4bd4260d05afd7c3b2ccc3c72
DIFF: https://github.com/llvm/llvm-project/commit/ac41c58f7b3b26a4bd4260d05afd7c3b2ccc3c72.diff
LOG: [clang][docs] Fix include path in InternalsManual (#209458)
The paths `include/Basic/StmtNodes.td` and `include/AST/Expr*.h` in the
Clang Internals Manual are incorrect.
Added:
Modified:
clang/docs/InternalsManual.rst
Removed:
################################################################################
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:
More information about the cfe-commits
mailing list