From 00d5ceebf775a0aafd8c94f0e40db1b2ffb06b04 Mon Sep 17 00:00:00 2001 From: Pixxies Design LTD Date: Wed, 4 Aug 2021 01:44:05 +0200 Subject: [PATCH] Fixed typos in the slash command register example (#6292) ## First "example usage" example Added a period to the first console.log for consistency. Corrected typo in second console.log to read "Successfully". --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a3ac6a983..0e9b0fec5 100644 --- a/README.md +++ b/README.md @@ -55,14 +55,14 @@ const rest = new REST({ version: '9' }).setToken('token'); (async () => { try { - console.log('Started refreshing application (/) commands'); + console.log('Started refreshing application (/) commands.'); await rest.put( Routes.applicationGuildCommands(CLIENT_ID, GUILD_ID), { body: commands }, ); - console.log('Sucessfully reloaded application (/) commands.'); + console.log('Successfully reloaded application (/) commands.'); } catch (error) { console.error(error); }