Skip to content

Commit 85b53bb

Browse files
committed
Address PR comments
1 parent 03cca33 commit 85b53bb

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

Tools/LambdaTestTool-v2/src/Amazon.Lambda.TestTool/Commands/Settings/RunCommandSettings.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public sealed class RunCommandSettings : CommandSettings
3636
/// for the host specified in <see cref="LambdaEmulatorHost"/>.
3737
/// </summary>
3838
[CommandOption("--lambda-emulator-https-port <PORT>")]
39-
[Description("The port number used for the test tool's web interface.")]
39+
[Description("The https port number used for the test tool's web interface.")]
4040
public int? LambdaEmulatorHttpsPort { get; set; }
4141

4242
/// <summary>
@@ -58,20 +58,20 @@ public sealed class RunCommandSettings : CommandSettings
5858
public ApiGatewayEmulatorMode? ApiGatewayEmulatorMode { get; set; }
5959

6060
/// <summary>
61-
/// The port number used for the test tool's API Gateway emulator. If a port is specified the API Gateway emulator will be started. The --api-gateway-mode
62-
/// also be set when setting the API Gateway emulator port.
61+
/// The port number used for the test tool's API Gateway emulator. If a port is specified the API Gateway emulator will be started. The --api-gateway-emulator-mode
62+
/// must also be set when setting the API Gateway emulator port.
6363
/// </summary>
6464
[CommandOption("--api-gateway-emulator-port <PORT>")]
6565
[Description("The port number used for the test tool's API Gateway emulator.")]
6666
public int? ApiGatewayEmulatorPort { get; set; }
6767

6868
/// <summary>
69-
/// The https port number used for the test tool's API Gateway emulator. If a port is specified the API Gateway emulator will be started. The --api-gateway-mode must
69+
/// The https port number used for the test tool's API Gateway emulator. If a port is specified the API Gateway emulator will be started. The --api-gateway--emulator-mode must
7070
/// also be set when setting the API Gateway emulator port. To use HTTPS the environment must be configured with certs
7171
/// for the host specified in <see cref="LambdaEmulatorHost"/>.
7272
/// </summary>
7373
[CommandOption("--api-gateway-emulator-https-port <PORT>")]
74-
[Description("The port number used for the test tool's API Gateway emulator.")]
74+
[Description("The https port number used for the test tool's API Gateway emulator.")]
7575
public int? ApiGatewayEmulatorHttpsPort { get; set; }
7676

7777
/// <summary>

0 commit comments

Comments
 (0)