diff --git a/src/Discord.Net.Commands/Attributes/PreconditionAttribute.cs b/src/Discord.Net.Commands/Attributes/PreconditionAttribute.cs index 943bddb89..87be459d2 100644 --- a/src/Discord.Net.Commands/Attributes/PreconditionAttribute.cs +++ b/src/Discord.Net.Commands/Attributes/PreconditionAttribute.cs @@ -9,7 +9,7 @@ namespace Discord.Commands /// /// Specify a group that this precondition belongs to. Preconditions of the same group require only one /// of the preconditions to pass in order to be successful (A || B). Specifying = 0 - /// or not at all will require *all* preconditions to pass, just like normal (A && B). + /// or not at all will require *all* preconditions to pass, just like normal (A && B). /// public int Group { get; set; } = 0;