diff --git a/src/Discord.Net.Commands/ModuleBase.cs b/src/Discord.Net.Commands/ModuleBase.cs
index 3e6fbbd9b..b1445e0d3 100644
--- a/src/Discord.Net.Commands/ModuleBase.cs
+++ b/src/Discord.Net.Commands/ModuleBase.cs
@@ -21,11 +21,16 @@ namespace Discord.Commands
{
return await Context.Channel.SendMessageAsync(message, isTTS, embed, options).ConfigureAwait(false);
}
-
+ ///
+ /// The method to execute before executing the command.
+ ///
protected virtual void BeforeExecute(CommandInfo command)
{
}
-
+ ///
+ /// The method to execute after executing the command.
+ ///
+ ///
protected virtual void AfterExecute(CommandInfo command)
{
}
diff --git a/src/Discord.Net.Core/Entities/Messages/EmbedBuilder.cs b/src/Discord.Net.Core/Entities/Messages/EmbedBuilder.cs
index f5663cea3..baabe50c6 100644
--- a/src/Discord.Net.Core/Entities/Messages/EmbedBuilder.cs
+++ b/src/Discord.Net.Core/Entities/Messages/EmbedBuilder.cs
@@ -4,6 +4,9 @@ using System.Collections.Immutable;
namespace Discord
{
+ ///
+ /// Builder for creating an to be sent.
+ ///
public class EmbedBuilder
{
private readonly Embed _embed;