Skip to content

Commit

Permalink
chore(lfu): fix to internal bug
Browse files Browse the repository at this point in the history
  • Loading branch information
TomokiMiyauci committed Jun 14, 2023
1 parent 24ce522 commit 46c9ada
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lfu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class Container<T> {
}

inc(): number {
return this.count++;
return ++this.count;
}
}

Expand Down

0 comments on commit 46c9ada

Please sign in to comment.