From ebcde600c69bd2e0094c76f30e73c290fc938f76 Mon Sep 17 00:00:00 2001 From: David Sanders Date: Tue, 13 Oct 2020 15:11:43 -0700 Subject: [PATCH] chore: use HTTPS for electronjs.org URLs (#40) --- src/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constants.ts b/src/constants.ts index b04eea4..9fe5317 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -1,3 +1,3 @@ -export const WEBSITE_BASE_DOCS_URL = 'http://electronjs.org'; +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`;