Skip to content

Commit

Permalink
Better help
Browse files Browse the repository at this point in the history
  • Loading branch information
mattleibow committed Jan 8, 2020
1 parent 8b411ff commit f2b022e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api-tools/DiffCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ public DiffCommand()
protected override OptionSet OnCreateOptions() => new OptionSet
{
{ "o|output=", "The output file path", v => OutputPath = v },
{ "ignore-nonbreaking", "Ignore the non-breaking changes and just output breaking changes", v => IgnoreNonbreaking = true },
{ "ignore-parameter-names", "Ignore the changes to parameter names", v => IgnoreParameterNames = true },
{ "ignore-nonbreaking", "Ignore the non-breaking API changes", v => IgnoreNonbreaking = true },
{ "ignore-param-names", "Ignore the changes to parameter names", v => IgnoreParameterNames = true },
{ "ignore-virtual", "Ignore the changes to virtual modifiers", v => IgnoreVirtualChanges = true },
};

Expand Down

0 comments on commit f2b022e

Please sign in to comment.