diff --git a/main.js b/main.js index 31d55f0..ed243c0 100644 --- a/main.js +++ b/main.js @@ -84,7 +84,7 @@ async function checkPriceContinuously() { if (lastKnownPriceAtStartup !== null && (parseFloat(price) - lastKnownPriceAtStartup >= 2.5)) { const announcementsChannel = await client.channels.fetch(announcementsChannelId); - await announcementsChannel.send(`@everyonle Solana price has increased significantly! Current price: $${price}`); + await announcementsChannel.send(`@everyone Solana price has increased significantly! Current price: $${price}`); lastKnownPriceAtStartup = parseFloat(price); }