Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/System.CommandLine/ParseResult.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace System.CommandLine
/// <summary>
/// Describes the results of parsing a command line input based on a specific parser configuration.
/// </summary>
public class ParseResult
public sealed class ParseResult
{
private readonly IReadOnlyList<ParseError> _errors;
private readonly CommandResult _rootCommandResult;
Expand Down
2 changes: 1 addition & 1 deletion src/System.CommandLine/Parsing/ParseError.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace System.CommandLine.Parsing
/// <summary>
/// Describes an error that occurs while parsing command line input.
/// </summary>
public class ParseError
public sealed class ParseError
{
internal ParseError(
string message,
Expand Down