diff --git a/docs/guides/commands/samples/preconditions/require_role.cs b/docs/guides/commands/samples/preconditions/require_role.cs index 208d71231..77d09b525 100644 --- a/docs/guides/commands/samples/preconditions/require_role.cs +++ b/docs/guides/commands/samples/preconditions/require_role.cs @@ -24,7 +24,7 @@ public class RequireRoleAttribute : PreconditionAttribute return Task.FromResult(PreconditionResult.FromSuccess()); // Since it wasn't, fail else - return Task.FromResult(PreconditionResult.FromError($"You must a role named {_name} to run this command.")); + return Task.FromResult(PreconditionResult.FromError($"You must have a role named {_name} to run this command.")); } else return Task.FromResult(PreconditionResult.FromError("You must be in a guild to run this command."));