From 737a1eb9e2a4531e0665612fbda1065c1f67d067 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sun, 5 Oct 2025 09:39:52 -0400 Subject: [PATCH] Rename OutputIndividualFeature to OutputFeatureHelp --- SabreTools.CommandLine/CommandSet.cs | 2 +- SabreTools.CommandLine/Features/Help.cs | 2 +- SabreTools.CommandLine/Features/HelpExtended.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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; }