From 45b0fca729e5d2dfb5bbf133ad66881349d0d88d Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sat, 4 Oct 2025 18:49:36 -0400 Subject: [PATCH] Fix naming of reference features in readme --- README.MD | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.MD b/README.MD index b1c0b78..09e7884 100644 --- a/README.MD +++ b/README.MD @@ -57,13 +57,13 @@ Below is a mapping from default supported types to their respective class names ## Reference Implementations -Three reference feature implementations are included for common cases. They are defined in the table below. +Three reference feature implementations are included in the `SabreTools.CommandLine.Features` namespace. They are defined in the table below. | Class | Description | | --- | --- | -| `DefaultHelp` | Outputs either a generic help text or one specific to a feature name included as the second argument | -| `DefaultHelpExtended` | Outputs either a generic help text with extended descriptions or one specific to a feature name included as the second argument | -| `DefaultVersion` | Outputs the version number of the program, derived from the informational version | +| `Help` | Outputs either a generic help text or one specific to a feature name included as the second argument | +| `HelpExtended` | Outputs either a generic help text with extended descriptions or one specific to a feature name included as the second argument | +| `Version` | Outputs the version number of the program, derived from the informational version | ## Releases