From 70255e547e127915f5bf3ab413c9783a39757bf6 Mon Sep 17 00:00:00 2001 From: Joe4evr Date: Thu, 15 Jun 2017 17:12:18 +0200 Subject: [PATCH] Fix doc comment rendering. --- src/Discord.Net.Commands/Attributes/PreconditionAttribute.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;