From d4258b165141306c7680690595823ef2cb83a27e Mon Sep 17 00:00:00 2001 From: Colby McHenry Date: Mon, 6 Apr 2026 13:07:38 -0500 Subject: [PATCH] docs: Simplify getImpactRadius API call in verification guide Updates example code to use the simplified two-parameter form of getImpactRadius instead of the options object pattern, making the documentation consistent with current API usage. --- docs/SEARCH_QUALITY_LOOP.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/SEARCH_QUALITY_LOOP.md b/docs/SEARCH_QUALITY_LOOP.md index f825b3c..6a25f81 100644 --- a/docs/SEARCH_QUALITY_LOOP.md +++ b/docs/SEARCH_QUALITY_LOOP.md @@ -235,7 +235,7 @@ async function test() { const node = results[0].node; console.log(\`Impact analysis for: \${node.name} (\${node.kind}) — \${node.filePath}\`); - const impact = cg.getImpactRadius(node.id, { depth: 2 }); + const impact = cg.getImpactRadius(node.id, 2); console.log(\`\nAffected nodes: \${impact.nodes.size}\`); console.log(\`Affected edges: \${impact.edges.length}\`);