We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8955e5c commit dd8e110Copy full SHA for dd8e110
src/data-structures/priority-queue/PriorityQueue.js
@@ -5,7 +5,7 @@ import Comparator from '../../utils/comparator/Comparator';
5
// we take into account its priority instead of the element's value.
6
export default class PriorityQueue extends MinHeap {
7
constructor() {
8
- // Call MinHip constructor first.
+ // Call MinHeap constructor first.
9
super();
10
11
// Setup priorities map.
0 commit comments