From d3d19ce49ba809d6d6e3ce9c9cc8188a58aeb0b7 Mon Sep 17 00:00:00 2001 From: BaumianerNiklas <68434250+BaumianerNiklas@users.noreply.github.com> Date: Tue, 29 Jun 2021 01:34:30 +0200 Subject: [PATCH] docs(Webhook): fix thread example in send method (#5953) --- src/structures/Webhook.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structures/Webhook.js b/src/structures/Webhook.js index 301edcd10b27..e853f88452ac 100644 --- a/src/structures/Webhook.js +++ b/src/structures/Webhook.js @@ -118,7 +118,7 @@ class Webhook { * .catch(console.error); * @example * // Send a basic message in a thread - * webhook.send('hello!', { threadID: '836856309672348295' }) + * webhook.send({ content: 'hello!', threadID: '836856309672348295' }) * .then(message => console.log(`Sent message: ${message.content}`)) * .catch(console.error); * @example