Skip to content

Commit

Permalink
fix(sharding): typo (discordjs#946)
Browse files Browse the repository at this point in the history
* interation -> interaction
  • Loading branch information
GodderE2D authored Nov 11, 2021
1 parent 7558035 commit 445218a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guide/sharding/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ client.on('interactionCreate', interaction => {
const { commandName } = interaction;

if (commandName === 'stats') {
return interation.reply(`Server count: ${client.guilds.cache.size}.`);
return interaction.reply(`Server count: ${client.guilds.cache.size}.`);
}
});

Expand Down

0 comments on commit 445218a

Please sign in to comment.