From: Matthew Fernandez Date: Wed, 18 Jan 2023 16:30:02 +0000 (-0800) Subject: neatogen common_neighbors: fix comment typo X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=69bb743682160cee51741b2879146afb1822ab96;p=graphviz neatogen common_neighbors: fix comment typo --- diff --git a/lib/neatogen/kkutils.c b/lib/neatogen/kkutils.c index c731c2a96..bf0246bab 100644 --- a/lib/neatogen/kkutils.c +++ b/lib/neatogen/kkutils.c @@ -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++; } }