From cad64a5b096265e90bc2ee39a0bed7b946d872fe Mon Sep 17 00:00:00 2001 From: Jon Eugster Date: Mon, 2 Sep 2024 15:12:15 +0200 Subject: [PATCH] fix text --- html-template/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/html-template/index.html b/html-template/index.html index a722d4d..6781b0e 100644 --- a/html-template/index.html +++ b/html-template/index.html @@ -109,7 +109,7 @@

Import Graph

-

Hover over a node to show only the files it imports. Hover over a directory name to highlight only the files in that directory

+

Hover over a node to show only the files importing it. Hover over a directory name to highlight only the files in that directory

@@ -466,8 +466,8 @@

Import Graph

descendants.add(node2); // ndecls_trans += graph.getNodeAttribute(node2, 'decl_count'); }); - graphologyLibrary.traversal.bfsFromNode(rev_graph, node, function(node, attr, depth) { - ancestors.add(node); + graphologyLibrary.traversal.bfsFromNode(rev_graph, node, function(node2, attr, depth) { + ancestors.add(node2); }); state.hoveredDescendants = descendants; state.hoveredAncestors = ancestors;