Browse Source

Fix doc comment rendering.

pull/672/head
Joe4evr 8 years ago
parent
commit
70255e547e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Discord.Net.Commands/Attributes/PreconditionAttribute.cs

+ 1
- 1
src/Discord.Net.Commands/Attributes/PreconditionAttribute.cs View File

@@ -9,7 +9,7 @@ namespace Discord.Commands
/// <summary> /// <summary>
/// Specify a group that this precondition belongs to. Preconditions of the same group require only one /// 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 <see cref="Group"/> = 0 /// of the preconditions to pass in order to be successful (A || B). Specifying <see cref="Group"/> = 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 &amp;&amp; B).
/// </summary> /// </summary>
public int Group { get; set; } = 0; public int Group { get; set; } = 0;




Loading…
Cancel
Save