Skip to content
Open
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
1 change: 0 additions & 1 deletion src/CommandLine/Text/HelpText.cs
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,6 @@ public SentenceBuilder SentenceBuilder
/// <param name='onExample'>A delegate used to customize <see cref="CommandLine.Text.Example"/> model used to render text block of usage examples.</param>
/// <param name="verbsIndex">If true the output style is consistent with verb commands (no dashes), otherwise it outputs options.</param>
/// <param name="maxDisplayWidth">The maximum width of the display.</param>
/// <param name="comparison">a comparison lambda to order options in help text</param>
/// <remarks>The parameter <paramref name="verbsIndex"/> is not ontly a metter of formatting, it controls whether to handle verbs or options.</remarks>
public static HelpText AutoBuild<T>(
ParserResult<T> parserResult,
Expand Down
2 changes: 0 additions & 2 deletions tests/CommandLine.Tests/Unit/Issue482Tests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,6 @@ public void AutoBuild_with_ordering()
.WithNotParsed(errors => { ; })
.WithParsed(args => {; });

Comparison<ComparableOption> comparison = HelpText.RequiredThenAlphaComparison;

string message = HelpText.AutoBuild(parseResult,
error =>
{
Expand Down