From b8b9e9b850d908ee288e61d80b096bc806ba8421 Mon Sep 17 00:00:00 2001 From: Ruben Buniatyan Date: Thu, 31 Oct 2024 15:47:50 +0100 Subject: [PATCH] Revise option docs --- src/Nethermind/Nethermind.Runner/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Nethermind/Nethermind.Runner/Program.cs b/src/Nethermind/Nethermind.Runner/Program.cs index e5193445651..ffc60b4971d 100644 --- a/src/Nethermind/Nethermind.Runner/Program.cs +++ b/src/Nethermind/Nethermind.Runner/Program.cs @@ -490,7 +490,7 @@ static class BasicOptions public static CliOption Configuration { get; } = new("--config", "-c") { - Description = "The path to the configuration file or the name (without extension) of any of the configuration files in the configuration directory.", + Description = "The path to the configuration file or the file name (also without extension) of any of the configuration files in the configuration files directory.", HelpName = "network or file name" }; @@ -516,7 +516,7 @@ static class BasicOptions public static CliOption LoggerConfigurationSource { get; } = new("--logger-config", "--loggerConfigSource", "-lcs") { - Description = "The path to the NLog configuration file.", + Description = "The path to the logging configuration file.", HelpName = "path" };