From fdd73f628e07f64cfc579d14007ea2ce1840662c Mon Sep 17 00:00:00 2001 From: Hero Protagonist Date: Sat, 11 May 2024 15:44:00 -0400 Subject: [PATCH] update jsdoc example --- src/command.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command.ts b/src/command.ts index 864e21c..f09c10a 100644 --- a/src/command.ts +++ b/src/command.ts @@ -204,7 +204,7 @@ export class Command implements MiddlewareObj { * ```ts * bot * .filter( - * Command.hasCommand(/\/delete_(.*)/), + * Command.hasCommand(/delete_(.*)/), * (ctx) => ctx.reply(`Deleting ${ctx.message?.text?.split("_")[1]}`) * ) * ```