From fa9bfe7872d8ca394ff6e69282e2f9f52d33e2db Mon Sep 17 00:00:00 2001 From: David Sanders Date: Wed, 21 Oct 2020 12:56:31 -0700 Subject: [PATCH] fix: correct GitHub repo base URL (#44) --- src/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constants.ts b/src/constants.ts index 9fe5317..d8637a9 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -1,3 +1,3 @@ export const WEBSITE_BASE_DOCS_URL = 'https://electronjs.org'; export const REPO_BASE_DOCS_URL = (version: string) => - `https://github.com/electron/electron/blob/${version}/docs/api`; + `https://github.com/electron/electron/blob/${version}`;