From 10d40fcacab8caa25b6380d13834bed77b52ca57 Mon Sep 17 00:00:00 2001 From: Xeno Date: Thu, 9 Dec 2021 21:12:01 -0800 Subject: [PATCH] fix: unclear parameter naming for MessageCommand (#361) --- 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 f240eddd0..4beedb6dd 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(IMessage user) +public async Task Bookmark(IMessage message) { ... }