From 6f961f3e2ac096685e0f376be4d836b23fc608ee Mon Sep 17 00:00:00 2001 From: Till Rohrmann Date: Mon, 24 Jun 2024 17:44:07 +0200 Subject: [PATCH] Remove empty line which breaks the help message description of environment --- cli/src/app.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/cli/src/app.rs b/cli/src/app.rs index 73198ca0b7..7cf47d115b 100644 --- a/cli/src/app.rs +++ b/cli/src/app.rs @@ -33,10 +33,9 @@ pub struct CliApp { #[derive(Args, Collect, Clone, Default)] pub struct GlobalOpts { /// Environment to select from the config file. Environment is read from these sources in order of precedence: - /// - /// 1. This command line argument - /// 2. $RESTATE_ENVIRONMENT - /// 3. The file $RESTATE_CLI_CONFIG_HOME/environment (default: $HOME/.config/restate/environment) + /// 1. This command line argument + /// 2. $RESTATE_ENVIRONMENT + /// 3. The file $RESTATE_CLI_CONFIG_HOME/environment (default: $HOME/.config/restate/environment) /// If none of these are provided, the 'local' environment is used, pointing to an instance running locally. #[arg(long, short, global = true, verbatim_doc_comment)] pub environment: Option,