diff --git a/src/Discord.Net.Commands/RunMode.cs b/src/Discord.Net.Commands/RunMode.cs
index ecb6a4b58..43ced3f72 100644
--- a/src/Discord.Net.Commands/RunMode.cs
+++ b/src/Discord.Net.Commands/RunMode.cs
@@ -1,9 +1,18 @@
-namespace Discord.Commands
+namespace Discord.Commands
{
public enum RunMode
{
+ ///
+ /// Default behaviour set in .
+ ///
Default,
+ ///
+ /// Executes the command on the same thread as gateway.
+ ///
Sync,
+ ///
+ /// Executes the command on a different thread from the gateway one.
+ ///
Async
}
}