From 8db9c4083665e17fe65d66fe79057f293d08313a Mon Sep 17 00:00:00 2001 From: Jonathan Goldwasser Date: Tue, 9 Feb 2021 16:00:46 +0100 Subject: [PATCH] fix(tools): doc block links not clickable in VS Code (#12336) Before After ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- tools/cfn2ts/lib/codegen.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/cfn2ts/lib/codegen.ts b/tools/cfn2ts/lib/codegen.ts index f1e9f184e67af..8d85d05f7ee72 100644 --- a/tools/cfn2ts/lib/codegen.ts +++ b/tools/cfn2ts/lib/codegen.ts @@ -898,7 +898,7 @@ export default class CodeGenerator { this.code.line('/**'); before.forEach(line => this.code.line(` * ${line}`.trimRight())); if (link) { - this.code.line(` * @see ${link}`); + this.code.line(` * @link ${link}`); } this.code.line(' */'); return;