From e815db1d854f065fd1c38ee528abc782968dd92a Mon Sep 17 00:00:00 2001 From: Lee Carlon Date: Wed, 29 Apr 2020 09:55:11 +1000 Subject: [PATCH] Corrected a typo --- source/Octopus.Cli/Commands/ApiCommand.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Octopus.Cli/Commands/ApiCommand.cs b/source/Octopus.Cli/Commands/ApiCommand.cs index 5d79719161..0d434bd1f7 100644 --- a/source/Octopus.Cli/Commands/ApiCommand.cs +++ b/source/Octopus.Cli/Commands/ApiCommand.cs @@ -60,8 +60,8 @@ protected ApiCommand(IOctopusClientFactory clientFactory, IOctopusAsyncRepositor var options = Options.For("Common options"); options.Add("server=", $"[Optional] The base URL for your Octopus Server, e.g., 'https://octopus.example.com/'. This URL can also be set in the {ServerUrlEnvVar} environment variable.", v => serverBaseUrl = v); - options.Add("apiKey=", $"[Optional] Your API key. Get this from the user profile page. Your must provide an apiKey or username and password. If the guest account is enabled, a key of API-GUEST can be used. This key can also be set in the {ApiKeyEnvVar} environment variable.", v => apiKey = v, sensitive: true); - options.Add("user=", $"[Optional] Username to use when authenticating with the server. Your must provide an apiKey or username and password. This Username can also be set in the {UsernameEnvVar} environment variable.", v => username = v); + options.Add("apiKey=", $"[Optional] Your API key. Get this from the user profile page. You must provide an apiKey or username and password. If the guest account is enabled, a key of API-GUEST can be used. This key can also be set in the {ApiKeyEnvVar} environment variable.", v => apiKey = v, sensitive: true); + options.Add("user=", $"[Optional] Username to use when authenticating with the server. You must provide an apiKey or username and password. This Username can also be set in the {UsernameEnvVar} environment variable.", v => username = v); options.Add("pass=", $"[Optional] Password to use when authenticating with the server. This Password can also be set in the {PasswordEnvVar} environment variable.", v => password = v, sensitive: true); options.Add("configFile=", "[Optional] Text file of default values, with one 'key = value' per line.", v => ReadAdditionalInputsFromConfigurationFile(v));