From b4400a42b745539267d0b99620791972347bf17b Mon Sep 17 00:00:00 2001 From: mariari Date: Wed, 1 Feb 2023 15:26:22 +0800 Subject: [PATCH 1/2] Update help text to properly display the url without newlining half-way --- apps/src/lib/cli.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/src/lib/cli.rs b/apps/src/lib/cli.rs index 08d6dfe722..15996c8bfc 100644 --- a/apps/src/lib/cli.rs +++ b/apps/src/lib/cli.rs @@ -3260,7 +3260,8 @@ pub mod args { } fn def(app: App) -> App { - app.arg(CHAIN_ID.def().about("The chain ID. The chain must be known in the https://github.com/heliaxdev/anoma-network-config repository.")) + app.arg(CHAIN_ID.def().about("The chain ID. The chain must be known in the repository: \ + https://github.com/heliaxdev/anoma-network-config")) .arg(GENESIS_VALIDATOR.def().about("The alias of the genesis validator that you want to set up as, if any.")) .arg(PRE_GENESIS_PATH.def().about("The path to the pre-genesis directory for genesis validator, if any. Defaults to \"{base-dir}/pre-genesis/{genesis-validator}\".")) .arg(DONT_PREFETCH_WASM.def().about( From ebb7228187bcf0717b34adaee7f511614365ecb9 Mon Sep 17 00:00:00 2001 From: mariari Date: Tue, 7 Feb 2023 17:18:52 +0800 Subject: [PATCH 2/2] Add a change log note on the feature --- .changelog/unreleased/improvements/help-text-fix.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .changelog/unreleased/improvements/help-text-fix.md diff --git a/.changelog/unreleased/improvements/help-text-fix.md b/.changelog/unreleased/improvements/help-text-fix.md new file mode 100644 index 0000000000..cb94ba7ec3 --- /dev/null +++ b/.changelog/unreleased/improvements/help-text-fix.md @@ -0,0 +1,3 @@ +- update help text on namadc utils join-network so that the url + displays cleanly on a single line, instead of being cut half way + ([#1109](https://github.com/anoma/namada/pull/1109))