From 32f84f6e08f240aaf4127cd60cb59f549576fcec Mon Sep 17 00:00:00 2001 From: Caleb Fontenot Date: Tue, 4 Apr 2023 16:18:28 -0500 Subject: [PATCH] Add countChars function --- commands/countChars.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/countChars.ts b/commands/countChars.ts index 94d75f7..de2847d 100644 --- a/commands/countChars.ts +++ b/commands/countChars.ts @@ -11,7 +11,7 @@ module.exports = { ), async execute(interaction) { var inputString = interaction.options.getString('string'); - await interaction.reply("Input: `" inputString + "`\n" + "Output: " + codeBlock("", countChars(inputString))); + await interaction.reply("Input: `" + inputString + "`\n" + "Output: " + codeBlock("", countChars(inputString))); console.log("User " + interaction.user.tag + " ran /count_chars"); }, };