@@ -4,7 +4,7 @@ namespace Discord.Commands | |||||
{ | { | ||||
// Extension of the Cosmetic Summary, for Groups, Commands, and Parameters | // Extension of the Cosmetic Summary, for Groups, Commands, and Parameters | ||||
/// <summary> | /// <summary> | ||||
/// An attribute that allows you to attach remarks to your command. | |||||
/// Attaches remarks to your commands. | |||||
/// </summary> | /// </summary> | ||||
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Class, AllowMultiple = false, Inherited = true)] | [AttributeUsage(AttributeTargets.Method | AttributeTargets.Class, AllowMultiple = false, Inherited = true)] | ||||
public class RemarksAttribute : Attribute | public class RemarksAttribute : Attribute | ||||
@@ -4,7 +4,7 @@ namespace Discord.Commands | |||||
{ | { | ||||
// Cosmetic Summary, for Groups and Commands | // Cosmetic Summary, for Groups and Commands | ||||
/// <summary> | /// <summary> | ||||
/// An attribute that allows you to attach a summary to your command. | |||||
/// Attaches a summary to your command. | |||||
/// </summary> | /// </summary> | ||||
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Class | AttributeTargets.Parameter, AllowMultiple = false, Inherited = true)] | [AttributeUsage(AttributeTargets.Method | AttributeTargets.Class | AttributeTargets.Parameter, AllowMultiple = false, Inherited = true)] | ||||
public class SummaryAttribute : Attribute | public class SummaryAttribute : Attribute | ||||
@@ -5,12 +5,12 @@ using Discord.Commands.Builders; | |||||
namespace Discord.Commands | namespace Discord.Commands | ||||
{ | { | ||||
/// <summary> | /// <summary> | ||||
/// The base class that command modules inherit from where the context is of type <see cref="ICommandContext"/>. | |||||
/// Provides a base class for a command module to inherit from. | |||||
/// </summary> | /// </summary> | ||||
public abstract class ModuleBase : ModuleBase<ICommandContext> { } | public abstract class ModuleBase : ModuleBase<ICommandContext> { } | ||||
/// <summary> | /// <summary> | ||||
/// The base class that command modules inherit from. | |||||
/// Provides a base class for a command module to inherit from. | |||||
/// </summary> | /// </summary> | ||||
/// <typeparam name="T">A class that implements <see cref="ICommandContext"/>.</typeparam> | /// <typeparam name="T">A class that implements <see cref="ICommandContext"/>.</typeparam> | ||||
public abstract class ModuleBase<T> : IModuleBase | public abstract class ModuleBase<T> : IModuleBase | ||||