Rename OutputIndividualFeature to OutputFeatureHelp

This commit is contained in:
Matt Nadareski
2025-10-05 09:39:52 -04:00
parent 511c31335b
commit 737a1eb9e2
3 changed files with 3 additions and 3 deletions

View File

@@ -202,7 +202,7 @@ namespace SabreTools.CommandLine
/// </summary>
/// <param name="featureName">Name of the feature to output information for, if possible</param>
/// <param name="includeLongDescription">True if the long description should be formatted and output, false otherwise</param>
public void OutputIndividualFeature(string? featureName, bool includeLongDescription = false)
public void OutputFeatureHelp(string? featureName, bool includeLongDescription = false)
{
// Start building the output list
List<string> output = [];

View File

@@ -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;
}

View File

@@ -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;
}