From 19ac311b9ec44b70d8cf69a8e77cd9e0f92e20be Mon Sep 17 00:00:00 2001 From: Brian Golden Date: Thu, 7 Oct 2021 16:32:01 -0700 Subject: [PATCH] Fix base URI for rule documentation --- src/features/CodeActions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/CodeActions.ts b/src/features/CodeActions.ts index 7fcf0a639f..73c8974312 100644 --- a/src/features/CodeActions.ts +++ b/src/features/CodeActions.ts @@ -34,7 +34,7 @@ export class CodeActionsFeature implements vscode.Disposable { } public showRuleDocumentation(ruleId: string) { - const pssaDocBaseURL = "https://github.com/PowerShell/PSScriptAnalyzer/blob/master/RuleDocumentation"; + const pssaDocBaseURL = "https://github.com/PowerShell/PSScriptAnalyzer/blob/master/docs/Rules"; if (!ruleId) { this.log.writeWarning("Cannot show documentation for code action, no ruleName was supplied.");