diff --git a/SabreTools.CommandLine/CommandSet.cs b/SabreTools.CommandLine/CommandSet.cs
index db37278..39cdffa 100644
--- a/SabreTools.CommandLine/CommandSet.cs
+++ b/SabreTools.CommandLine/CommandSet.cs
@@ -202,7 +202,7 @@ namespace SabreTools.CommandLine
///
/// Name of the feature to output information for, if possible
/// True if the long description should be formatted and output, false otherwise
- public void OutputIndividualFeature(string? featureName, bool includeLongDescription = false)
+ public void OutputFeatureHelp(string? featureName, bool includeLongDescription = false)
{
// Start building the output list
List output = [];
diff --git a/SabreTools.CommandLine/Features/Help.cs b/SabreTools.CommandLine/Features/Help.cs
index cc18fea..e8d9bca 100644
--- a/SabreTools.CommandLine/Features/Help.cs
+++ b/SabreTools.CommandLine/Features/Help.cs
@@ -36,7 +36,7 @@
// If we had something else after help
if (args.Length > 1)
{
- parentSet?.OutputIndividualFeature(args[1]);
+ parentSet?.OutputFeatureHelp(args[1]);
return true;
}
diff --git a/SabreTools.CommandLine/Features/HelpExtended.cs b/SabreTools.CommandLine/Features/HelpExtended.cs
index af4540a..7d838d9 100644
--- a/SabreTools.CommandLine/Features/HelpExtended.cs
+++ b/SabreTools.CommandLine/Features/HelpExtended.cs
@@ -36,7 +36,7 @@
// If we had something else after help
if (args.Length > 1)
{
- parentSet?.OutputIndividualFeature(args[1], includeLongDescription: true);
+ parentSet?.OutputFeatureHelp(args[1], includeLongDescription: true);
return true;
}