diff --git a/src/CommandLine/Text/HelpText.cs b/src/CommandLine/Text/HelpText.cs
index b23bb804..ae3b0e28 100644
--- a/src/CommandLine/Text/HelpText.cs
+++ b/src/CommandLine/Text/HelpText.cs
@@ -304,7 +304,6 @@ public SentenceBuilder SentenceBuilder
/// A delegate used to customize model used to render text block of usage examples.
/// If true the output style is consistent with verb commands (no dashes), otherwise it outputs options.
/// The maximum width of the display.
- /// a comparison lambda to order options in help text
/// The parameter is not ontly a metter of formatting, it controls whether to handle verbs or options.
public static HelpText AutoBuild(
ParserResult parserResult,
diff --git a/tests/CommandLine.Tests/Unit/Issue482Tests.cs b/tests/CommandLine.Tests/Unit/Issue482Tests.cs
index 61bc1f25..2460890c 100644
--- a/tests/CommandLine.Tests/Unit/Issue482Tests.cs
+++ b/tests/CommandLine.Tests/Unit/Issue482Tests.cs
@@ -70,8 +70,6 @@ public void AutoBuild_with_ordering()
.WithNotParsed(errors => { ; })
.WithParsed(args => {; });
- Comparison comparison = HelpText.RequiredThenAlphaComparison;
-
string message = HelpText.AutoBuild(parseResult,
error =>
{