From a6bf830983b6b66f89cf52dc36695caeb462ef5e Mon Sep 17 00:00:00 2001 From: quin lynch Date: Fri, 26 Nov 2021 12:58:05 -0400 Subject: [PATCH] Fix user command mismatch in docs --- docs/guides/interactions_framework/intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/interactions_framework/intro.md b/docs/guides/interactions_framework/intro.md index 0e72e4cc3..a3404075d 100644 --- a/docs/guides/interactions_framework/intro.md +++ b/docs/guides/interactions_framework/intro.md @@ -191,7 +191,7 @@ User commands can only have one parameter and its type must be an implementation A valid Message Command must have the following structure: ```csharp -[UserCommand("Bookmark")] +[MessageCommand("Bookmark")] public async Task Bookmark(IUser user) { ...