[clang] [clang][docs] Fix include path in InternalsManual (PR #209458)
via cfe-commits
cfe-commits at lists.llvm.org
Tue Jul 14 05:17:14 PDT 2026
https://github.com/BohdanYehorov created https://github.com/llvm/llvm-project/pull/209458
The paths `include/Basic/StmtNodes.td` and `include/AST/Expr*.h` in the Clang Internals Manual are incorrect.
>From 305fabe999be0370af21db87547ea4d3c09c2921 Mon Sep 17 00:00:00 2001
From: BohdanYehorov <yehorovbohdan.work at gmail.com>
Date: Tue, 14 Jul 2026 15:09:59 +0300
Subject: [PATCH] [clang][docs] Fix include path in InternalsManual
---
clang/docs/InternalsManual.rst | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
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