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
{