Skip to content

Commit 0edabcd

Browse files
committed
Lint issues in LeonardoHeap
1 parent ad4c540 commit 0edabcd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/thealgorithms/datastructures/heaps/LeonardoHeap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ private void shiftRootAndRestoreHeap() {
9696
j = j - 1;
9797

9898
if (j == 0) {
99-
// We arrived at the left most tree. Do a maxheapifyTree if a swap had occurred
99+
// We arrived at the left most tree. Do a maxheapifyTree if a swap had occurred
100100
if (swapRequired) {
101101
maxHeapifyTree(rootNodeIndexForHeapify, treeLevelforHeapify);
102102
}

0 commit comments

Comments
 (0)