From b693af5a0dd5ef73834b71e3743f462dfee4453b Mon Sep 17 00:00:00 2001 From: LtLi0n Date: Wed, 30 Oct 2019 20:34:42 +0200 Subject: [PATCH] Fixed a grammar mistake. Added a paragraph explaining the use case for outer group submodules. --- src/Discord.Net.Commands/Attributes/GroupAttribute.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Discord.Net.Commands/Attributes/GroupAttribute.cs b/src/Discord.Net.Commands/Attributes/GroupAttribute.cs index 88d6e9bae..7ea71c660 100644 --- a/src/Discord.Net.Commands/Attributes/GroupAttribute.cs +++ b/src/Discord.Net.Commands/Attributes/GroupAttribute.cs @@ -14,7 +14,8 @@ namespace Discord.Commands public string Prefix { get; } /// - /// Uses this module as parent instead. Allows creation of group modules outside of parent class. + /// Uses this module as the parent. + /// Useful when group modules are large and nesting them within the parent class becomes difficult to maintain. /// public Type ParentModule { get; set; }