Renamed Description/Summary Attributes to Summary/Remarks, as per discussion in #239

This commit is contained in:
Khionu Terabite
2016-09-06 16:19:43 -04:00
parent f9cdd3ddf6
commit b6c634b8b5
4 changed files with 13 additions and 13 deletions

View File

@@ -2,13 +2,13 @@
namespace Discord.Commands
{
// Full summary of method
// Extension of the Cosmetic Summary, for Groups, Commands, and Parameters
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Class)]
public class DescriptionAttribute : Attribute
public class RemarksAttribute : Attribute
{
public string Text { get; }
public DescriptionAttribute(string text)
public RemarksAttribute(string text)
{
Text = text;
}

View File

@@ -2,7 +2,7 @@
namespace Discord.Commands
{
// Brief summary of method/module/parameter
// Cosmetic Summary, for Groups and Commands
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Class | AttributeTargets.Parameter)]
public class SummaryAttribute : Attribute
{