This commit is contained in:
Mattias Karlsson 2024-11-13 15:00:21 +01:00 committed by GitHub
parent 375a708c43
commit cecfdc386c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ public sealed class CommandContext
public IRemainingArguments Remaining { get; }
/// <summary>
/// Gets all the arguments that were passed to the applicaton.
/// Gets all the arguments that were passed to the application.
/// </summary>
public IReadOnlyList<string> Arguments { get; }

View File

@ -74,7 +74,7 @@ public interface ICommandAppSettings
bool StrictParsing { get; set; }
/// <summary>
/// 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 <see cref="CommandParseException"/> being thrown
/// during parsing with the message "Flags cannot be assigned a value."
/// should instead be added to the remaining arguments collection.