From cd1aefb46c6a6bcb4b943262c16dc4ad62430978 Mon Sep 17 00:00:00 2001 From: Jan <66554238+vaporox@users.noreply.github.com> Date: Fri, 6 Aug 2021 17:43:21 +0200 Subject: [PATCH] docs: fix bad indentation (#6316) --- README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 6e6a4ec0a5c4..223472c63734 100644 --- a/README.md +++ b/README.md @@ -54,18 +54,18 @@ const commands = [{ const rest = new REST({ version: '9' }).setToken('token'); (async () => { - try { - console.log('Started refreshing application (/) commands.'); - - await rest.put( - Routes.applicationGuildCommands(CLIENT_ID, GUILD_ID), - { body: commands }, - ); - - console.log('Successfully reloaded application (/) commands.'); - } catch (error) { - console.error(error); - } + try { + console.log('Started refreshing application (/) commands.'); + + await rest.put( + Routes.applicationGuildCommands(CLIENT_ID, GUILD_ID), + { body: commands }, + ); + + console.log('Successfully reloaded application (/) commands.'); + } catch (error) { + console.error(error); + } })(); ```