Merge pull request #54 from szTheory/patch-1

Fix typo
This commit is contained in:
Dhghomon 2020-08-03 11:43:31 +09:00 committed by GitHub
commit 66a5ef6166
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3059,7 +3059,7 @@ Now it will print in order.
## BinaryHeap
A `BinaryHeap` is an interesting collection type, because is is mostly unordered but has a bit of order. It is a collection that keeps the largest item in the front, but the other items are in any order.
A `BinaryHeap` is an interesting collection type, because it is mostly unordered but has a bit of order. It is a collection that keeps the largest item in the front, but the other items are in any order.
We will use another list of items for an example, but this time smaller.