From 6ac0762465915df7712b7c2ccfda54913241adf9 Mon Sep 17 00:00:00 2001 From: Magnus Jacobsson Date: Mon, 9 Nov 2020 20:12:46 +0100 Subject: [PATCH] Correct spelling in comment --- lib/sparse/BinaryHeap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sparse/BinaryHeap.c b/lib/sparse/BinaryHeap.c index 4062e5a1c..e794c808d 100644 --- a/lib/sparse/BinaryHeap.c +++ b/lib/sparse/BinaryHeap.c @@ -265,7 +265,7 @@ void BinaryHeap_sanity_check(BinaryHeap h){ assert(id_to_pos[pos_to_id[i]] == i); } - /* all IDs, spare or in use, are ccounted for and give a contiguous set */ + /* all IDs, spare or in use, are accounted for and give a contiguous set */ for (i = 0; i < h->len + IntStack_get_length(h->id_stack); i++) assert(mask[i] != -1); FREE(mask); -- 2.40.0