From: Magnus Jacobsson Date: Mon, 9 Nov 2020 19:12:46 +0000 (+0100) Subject: Correct spelling in comment X-Git-Tag: 2.46.0~11^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6ac0762465915df7712b7c2ccfda54913241adf9;p=graphviz Correct spelling in comment --- 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);