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]}`) * ) * ```