From 7943c4da48ee6a3c3aa9c4b2b68c8145e70c4f4f Mon Sep 17 00:00:00 2001 From: szTheory Date: Sun, 2 Aug 2020 19:49:25 +0000 Subject: [PATCH] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 738b616..dfa19c4 100644 --- a/README.md +++ b/README.md @@ -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.