]> granicus.if.org Git - graphviz/commitdiff
neatogen common_neighbors: fix comment typo
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 18 Jan 2023 16:30:02 +0000 (08:30 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 22 Jan 2023 00:32:26 +0000 (16:32 -0800)
lib/neatogen/kkutils.c

index c731c2a9602ab07307233fd214aac66642530ff3..bf0246bab42c41d5e1dbddc9e450f313bd0c4d02 100644 (file)
@@ -24,7 +24,7 @@ int common_neighbors(vtx_data * graph, int u, int *v_vector)
     for (j = 1; j < graph[u].nedges; j++) {
        neighbor = graph[u].edges[j];
        if (v_vector[neighbor] > 0) {
-           /* a shared neighobr */
+           // a shared neighbor
            num_shared_neighbors++;
        }
     }