diff --git a/src/Discord.Net.Commands/Attributes/RemarksAttribute.cs b/src/Discord.Net.Commands/Attributes/RemarksAttribute.cs
index 861db9aa2..2fbe2bf4a 100644
--- a/src/Discord.Net.Commands/Attributes/RemarksAttribute.cs
+++ b/src/Discord.Net.Commands/Attributes/RemarksAttribute.cs
@@ -4,7 +4,7 @@ namespace Discord.Commands
{
// Extension of the Cosmetic Summary, for Groups, Commands, and Parameters
///
- /// An attribute that allows you to attach remarks to your command.
+ /// Attaches remarks to your commands.
///
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
public class RemarksAttribute : Attribute
diff --git a/src/Discord.Net.Commands/Attributes/SummaryAttribute.cs b/src/Discord.Net.Commands/Attributes/SummaryAttribute.cs
index a074c357f..57e9b0277 100644
--- a/src/Discord.Net.Commands/Attributes/SummaryAttribute.cs
+++ b/src/Discord.Net.Commands/Attributes/SummaryAttribute.cs
@@ -4,7 +4,7 @@ namespace Discord.Commands
{
// Cosmetic Summary, for Groups and Commands
///
- /// An attribute that allows you to attach a summary to your command.
+ /// Attaches a summary to your command.
///
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Class | AttributeTargets.Parameter, AllowMultiple = false, Inherited = true)]
public class SummaryAttribute : Attribute
diff --git a/src/Discord.Net.Commands/ModuleBase.cs b/src/Discord.Net.Commands/ModuleBase.cs
index 7f86e123a..9cd4ea15d 100644
--- a/src/Discord.Net.Commands/ModuleBase.cs
+++ b/src/Discord.Net.Commands/ModuleBase.cs
@@ -5,12 +5,12 @@ using Discord.Commands.Builders;
namespace Discord.Commands
{
///
- /// The base class that command modules inherit from where the context is of type .
+ /// Provides a base class for a command module to inherit from.
///
public abstract class ModuleBase : ModuleBase { }
///
- /// The base class that command modules inherit from.
+ /// Provides a base class for a command module to inherit from.
///
/// A class that implements .
public abstract class ModuleBase : IModuleBase