From a23d32dc72b77848e316204536a6c2f5ad85e7c8 Mon Sep 17 00:00:00 2001 From: anantoghosh Date: Tue, 22 Nov 2016 23:41:41 +0530 Subject: [PATCH] Fix Incorrect links in "vscode namespace API" Doc In description for ExtensionContext -> storagePath, links to globalState and workspaceState are incorrect and lead to an error page. --- src/vs/vscode.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/vscode.d.ts b/src/vs/vscode.d.ts index 1b7073e8ea9..24578f4b75f 100644 --- a/src/vs/vscode.d.ts +++ b/src/vs/vscode.d.ts @@ -3291,8 +3291,8 @@ declare module 'vscode' { * can store private state. The directory might not exist on disk and creation is * up to the extension. However, the parent directory is guaranteed to be existent. * - * Use [`workspaceState`](ExtensionContext#workspaceState) or - * [`globalState`](ExtensionContext#globalState) to store key value data. + * Use [`workspaceState`](#ExtensionContext.workspaceState) or + * [`globalState`](#ExtensionContext.globalState) to store key value data. */ storagePath: string; } -- GitLab