Skip to content

Commit dd8e110

Browse files
committed
fix wrong spell
1 parent 8955e5c commit dd8e110

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/data-structures/priority-queue/PriorityQueue.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Comparator from '../../utils/comparator/Comparator';
55
// we take into account its priority instead of the element's value.
66
export default class PriorityQueue extends MinHeap {
77
constructor() {
8-
// Call MinHip constructor first.
8+
// Call MinHeap constructor first.
99
super();
1010

1111
// Setup priorities map.

0 commit comments

Comments
 (0)