From 72a0380da87bb90ee09724708149c53f99f7df5d Mon Sep 17 00:00:00 2001 From: "Emil J. Tywoniak" Date: Thu, 18 Jul 2024 16:37:14 +0200 Subject: [PATCH] ast: don't suggest use in external projects --- frontends/ast/ast.cc | 8 ++++---- frontends/ast/ast.h | 4 +++- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/frontends/ast/ast.cc b/frontends/ast/ast.cc index 996f6715d..d21b8f02d 100644 --- a/frontends/ast/ast.cc +++ b/frontends/ast/ast.cc @@ -20,10 +20,10 @@ * * This is the AST frontend library. * - * The AST frontend library is not a frontend on it's own but provides a - * generic abstract syntax tree (AST) abstraction for HDL code and can be - * used by HDL frontends. See "ast.h" for an overview of the API and the - * Verilog frontend for an usage example. + * The AST frontend library is not a frontend on its own but provides an + * abstract syntax tree (AST) abstraction for the open source Verilog frontend + * at frontends/verilog. + * * */ diff --git a/frontends/ast/ast.h b/frontends/ast/ast.h index 59a393e08..6c4a1e15a 100644 --- a/frontends/ast/ast.h +++ b/frontends/ast/ast.h @@ -17,7 +17,9 @@ * * --- * - * This is support code for the Verilog frontend at frontends/verilog + * The AST frontend library is not a frontend on its own but provides an + * abstract syntax tree (AST) abstraction for the open source Verilog frontend + * at frontends/verilog. * */