Skip to content

Commit 435b5fc

Browse files
committed
Fix a typo in POD
1 parent b405179 commit 435b5fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Returns a minimum value in the queue.
7575

7676
### is-empty() returns Bool:D
7777

78-
while (not is-empty()) {
78+
while (not $heap.is-empty()) {
7979
// YOUR CODE
8080
}
8181

lib/Algorithm/MinMaxHeap.pm6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ Returns a minimum value in the queue.
424424
425425
=head3 is-empty() returns Bool:D
426426
427-
while (not is-empty()) {
427+
while (not $heap.is-empty()) {
428428
// YOUR CODE
429429
}
430430

0 commit comments

Comments
 (0)