From cecfdc386c153d431c3ccab6a770e0e051abc3d7 Mon Sep 17 00:00:00 2001 From: Mattias Karlsson Date: Wed, 13 Nov 2024 15:00:21 +0100 Subject: [PATCH] Fix typos (#1684) --- src/Spectre.Console.Cli/CommandContext.cs | 2 +- src/Spectre.Console.Cli/ICommandAppSettings.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Spectre.Console.Cli/CommandContext.cs b/src/Spectre.Console.Cli/CommandContext.cs index 89a2876..0e7a612 100644 --- a/src/Spectre.Console.Cli/CommandContext.cs +++ b/src/Spectre.Console.Cli/CommandContext.cs @@ -14,7 +14,7 @@ public sealed class CommandContext public IRemainingArguments Remaining { get; } /// - /// Gets all the arguments that were passed to the applicaton. + /// Gets all the arguments that were passed to the application. /// public IReadOnlyList Arguments { get; } diff --git a/src/Spectre.Console.Cli/ICommandAppSettings.cs b/src/Spectre.Console.Cli/ICommandAppSettings.cs index d9ca656..88ed386 100644 --- a/src/Spectre.Console.Cli/ICommandAppSettings.cs +++ b/src/Spectre.Console.Cli/ICommandAppSettings.cs @@ -74,7 +74,7 @@ public interface ICommandAppSettings bool StrictParsing { get; set; } /// - /// Gets or sets a value indicating whether or not flags found on the commnd line + /// Gets or sets a value indicating whether or not flags found on the command line /// that would normally result in a being thrown /// during parsing with the message "Flags cannot be assigned a value." /// should instead be added to the remaining arguments collection.