From 1eff235b18243287b9b2c482a4cb95c5891508e6 Mon Sep 17 00:00:00 2001 From: Luc Grosheintz Date: Fri, 8 Mar 2024 10:38:35 +0100 Subject: [PATCH] Improve CLI help message. (#1205) --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index ad06cab00..4dd4225ed 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -250,7 +250,7 @@ int main(int argc, const char* argv[]) { fmt::format("Write AST to JSON file ({})", json_ast))->ignore_case(); passes_opt->add_flag("--nmodl-ast", nmodl_ast, - fmt::format("Write AST to NMODL file ({})", nmodl_ast))->ignore_case(); + fmt::format("Write the intermediate AST after each pass as a NMODL file to the scratch directory ({})", nmodl_ast))->ignore_case(); passes_opt->add_flag("--json-perf", json_perfstat, fmt::format("Write performance statistics to JSON file ({})", json_perfstat))->ignore_case();