]> granicus.if.org Git - graphviz/commitdiff
sparse QuadTree_get_nearest_internal: fix comment typo
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 26 Dec 2022 21:49:58 +0000 (13:49 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 31 Dec 2022 23:34:34 +0000 (15:34 -0800)
The use of “years” in this comment does not make sense to me, so the comment
still seems faulty, but this is at least an improvement.

lib/sparse/QuadTree.c

index 1c5b160194c58386356c1da7e69a81c2ad4ae9ee..d63a82f5fa1c49383afa9a1883b371a2313e8f4d 100644 (file)
@@ -658,7 +658,7 @@ void QuadTree_print(FILE *fp, QuadTree q){
 
 
 static void QuadTree_get_nearest_internal(QuadTree qt, double *x, double *y, double *min, int *imin, int tentative){
-  /* get the narest point years to {x[0], ..., x[dim]} and store in y.*/
+  /* get the nearest point years to {x[0], ..., x[dim]} and store in y.*/
   SingleLinkedList l;
   double *coord, dist;
   int dim, i, iq = -1;