From fbd5688aa87f88d31ceac50dce32aa0d61749d0a Mon Sep 17 00:00:00 2001 From: LolzTheDev Date: Thu, 18 Jul 2024 11:43:03 -0500 Subject: [PATCH] fix syntax mistake unclosed bracket (`ownerOnly` takes a string array afaik) --- docs/guide/walkthrough/plugins.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/walkthrough/plugins.md b/docs/guide/walkthrough/plugins.md index fee0ef2a0..dcc263517 100644 --- a/docs/guide/walkthrough/plugins.md +++ b/docs/guide/walkthrough/plugins.md @@ -26,7 +26,7 @@ import { ownerOnly } from '../plugins' export default commandModule({ type: CommandType.Both, - plugins: [ownerOnly(['182326315813306368')], + plugins: [ownerOnly(['182326315813306368'])], description: 'ping command', execute: (ctx) => { ctx.reply('hello, owner');