Skip to content

Commit

Permalink
chore(Giveaways): fixed typo in variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
shadowplay1 committed Jan 4, 2024
1 parent 8e89e50 commit ba9f61f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Giveaways.ts
Original file line number Diff line number Diff line change
Expand Up @@ -346,11 +346,11 @@ export class Giveaways<
if (this.client.isReady()) {
clearInterval(clientReadyInterval)

const giveawatCheckingInterval = setInterval(() => {
const giveawayCheckingInterval = setInterval(() => {
this._checkGiveaways()
}, this.options.giveawaysCheckingInterval)

this.giveawaysCheckingInterval = giveawatCheckingInterval
this.giveawaysCheckingInterval = giveawayCheckingInterval

this.ready = true
this.emit('ready', this)
Expand Down

0 comments on commit ba9f61f

Please sign in to comment.