mirror of
https://github.com/SabreTools/SabreTools.CommandLine.git
synced 2026-09-21 14:14:58 +00:00
Rename OutputIndividualFeature to OutputFeatureHelp
This commit is contained in:
@@ -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 = [];
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user