From ea96f9a4cf6c38b93d08fdeff442287fb6c7e156 Mon Sep 17 00:00:00 2001 From: Chris Johnston Date: Thu, 3 Jan 2019 13:36:29 +0100 Subject: [PATCH] Feedback Whoops. :ok_hand: Co-Authored-By: Joe4evr --- docs/guides/commands/samples/preconditions/require_role.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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."));