From 75b74e1a3f8e5f3078b254c135befac9af8b7c07 Mon Sep 17 00:00:00 2001 From: Joe4evr Date: Mon, 15 Mar 2021 02:48:59 +0100 Subject: [PATCH] Fix line about PriorityAttribute (#21) Sorting with the highest number first is *de*scending order. --- docs/guides/commands/intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/commands/intro.md b/docs/guides/commands/intro.md index abe7065c1..14341a32b 100644 --- a/docs/guides/commands/intro.md +++ b/docs/guides/commands/intro.md @@ -134,7 +134,7 @@ If, for whatever reason, you have two commands which are ambiguous to each other, you may use the @Discord.Commands.PriorityAttribute to specify which should be tested before the other. -The `Priority` attributes are sorted in ascending order; the higher +The `Priority` attributes are sorted in descending order; the higher priority will be called first. ### Command Context