Browse Source

Alter parameter naming (#6)

Slightly better wording
pull/1161/head
Still Hsu GitHub 7 years ago
parent
commit
9c76e7e81d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Discord.Net.Commands/Attributes/ParameterPreconditionAttribute.cs

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

@@ -15,7 +15,7 @@ namespace Discord.Commands
/// </summary> /// </summary>
/// <param name="context">The context of the command.</param> /// <param name="context">The context of the command.</param>
/// <param name="parameter">The parameter of the command being checked against.</param> /// <param name="parameter">The parameter of the command being checked against.</param>
/// <param name="value">The raw value of the type.</param>
/// <param name="value">The raw value of the parameter.</param>
/// <param name="services">The service collection used for dependency injection.</param> /// <param name="services">The service collection used for dependency injection.</param>
public abstract Task<PreconditionResult> CheckPermissionsAsync(ICommandContext context, ParameterInfo parameter, object value, IServiceProvider services); public abstract Task<PreconditionResult> CheckPermissionsAsync(ICommandContext context, ParameterInfo parameter, object value, IServiceProvider services);
} }


Loading…
Cancel
Save