]> granicus.if.org Git - graphviz/commitdiff
Correct spelling in comment
authorMagnus Jacobsson <Magnus.Jacobsson@berotec.se>
Mon, 9 Nov 2020 19:12:46 +0000 (20:12 +0100)
committerMagnus Jacobsson <Magnus.Jacobsson@berotec.se>
Sun, 22 Nov 2020 15:16:45 +0000 (16:16 +0100)
lib/sparse/BinaryHeap.c

index 4062e5a1c0890b05ce869002d0b4975b038d67cd..e794c808db24e71693dba3df996fde153f5d48e5 100644 (file)
@@ -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);