Skip to content

Commit 8ce2acf

Browse files
authored
chore: comment-hygiene sweep (#46)
Cycle 12 hygiene sweep across src/scanner.ts. Fixes: - F (brand prose): capitalize "[asqav]" -> "[Asqav]" in 2 Markdown link-text mentions inside the generated report footer ("*Powered by [Asqav](https://asqav.com) - ...*", emitted twice). No semantic changes. Tests still pass. Code identifiers, URLs, and the package name in package.json are untouched.
1 parent 317d928 commit 8ce2acf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/scanner.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ export function generateReport(results: AnalysisResult[]): string {
220220
'**No AI agent framework usage detected.** No Python files importing known agent frameworks (LangChain, CrewAI, OpenAI, Anthropic, AutoGen, etc.) were found in the scanned path.',
221221
'',
222222
'---',
223-
'*Powered by [asqav](https://asqav.com) - AI agent governance made simple.*',
223+
'*Powered by [Asqav](https://asqav.com) - AI agent governance made simple.*',
224224
].join('\n');
225225
}
226226

@@ -340,7 +340,7 @@ export function generateReport(results: AnalysisResult[]): string {
340340
lines.push('</details>');
341341
lines.push('');
342342
lines.push('---');
343-
lines.push('*Powered by [asqav](https://asqav.com) - AI agent governance made simple. Get the full platform for automated compliance, audit trails, and policy enforcement.*');
343+
lines.push('*Powered by [Asqav](https://asqav.com) - AI agent governance made simple. Get the full platform for automated compliance, audit trails, and policy enforcement.*');
344344

345345
return lines.join('\n');
346346
}

0 commit comments

Comments
 (0)