From 767c1b1fb02519910b5cb9ffff21d5ca19ec8ebd Mon Sep 17 00:00:00 2001 From: quin lynch Date: Fri, 26 Nov 2021 13:07:45 -0400 Subject: [PATCH] Fix parameter in message commands --- 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 a3404075d..7e45419f6 100644 --- a/docs/guides/interactions_framework/intro.md +++ b/docs/guides/interactions_framework/intro.md @@ -192,7 +192,7 @@ A valid Message Command must have the following structure: ```csharp [MessageCommand("Bookmark")] -public async Task Bookmark(IUser user) +public async Task Bookmark(IMessage user) { ... }