From d1e6de35c3250f96c9a7ef6d8f88550cb96f4d84 Mon Sep 17 00:00:00 2001 From: Krystine Sherwin <93062060+KrystalDelusion@users.noreply.github.com> Date: Wed, 20 Nov 2024 09:42:47 +1300 Subject: [PATCH] backends/jny: Fix help text Text now matches functionality. --- backends/jny/jny.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backends/jny/jny.cc b/backends/jny/jny.cc index 1c163dba5..3897f7553 100644 --- a/backends/jny/jny.cc +++ b/backends/jny/jny.cc @@ -412,7 +412,7 @@ struct JnyBackend : public Backend { void help() override { // |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| log("\n"); - log(" jny [options] [selection]\n"); + log(" write_jny [options] [filename]\n"); log("\n"); log("Write JSON netlist metadata for the current design\n"); log("\n"); @@ -484,7 +484,7 @@ struct JnyPass : public Pass { log("\n"); log(" jny [options] [selection]\n"); log("\n"); - log("Write JSON netlist metadata for the current design\n"); + log("Write JSON netlist metadata for all selected objects\n"); log("\n"); log(" -o \n"); log(" write to the specified file.\n");