From 2a4759cce3711a67210b1cdd368efaa890e3a2e8 Mon Sep 17 00:00:00 2001 From: Christopher Yeleighton Date: Fri, 24 Jul 2020 10:45:49 +0200 Subject: [PATCH] Improve inline documentation for VerbInfo Amends #4746. --- src/System.Management.Automation/utils/Verbs.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/System.Management.Automation/utils/Verbs.cs b/src/System.Management.Automation/utils/Verbs.cs index aeb6a3ee530..0e220935a91 100644 --- a/src/System.Management.Automation/utils/Verbs.cs +++ b/src/System.Management.Automation/utils/Verbs.cs @@ -1116,12 +1116,12 @@ public static string GetVerbAliasPrefix(string verb) } /// - /// Class for Verbs and Groups. + /// Provides information about a verb used to name commands defined in PowerShell. /// public class VerbInfo { /// - /// Verb Name. + /// The verb name, used to begin command names. /// public string Verb { @@ -1129,7 +1129,7 @@ public string Verb } /// - /// Alias Prefix. + /// The alias prefix, recommended for aliases to commands that begin with this verb. /// public string AliasPrefix { @@ -1137,7 +1137,7 @@ public string AliasPrefix } /// - /// Group Name. + /// The name of the functional category of commands that begin with this verb. /// public string Group { @@ -1145,7 +1145,7 @@ public string Group } /// - /// Description. + /// Explains what the verb is meant to do with its object. /// public string Description {