From 47200d88f0bf2c5789e013c67571ce18256e4982 Mon Sep 17 00:00:00 2001 From: Gregor Date: Mon, 22 Oct 2018 20:00:10 -0700 Subject: [PATCH] docs(README): use https:// for enterprise example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cf5093d99..b57a23253 100644 --- a/README.md +++ b/README.md @@ -233,7 +233,7 @@ Override or set default options. Example: ```js const myOctokitRequest = require('@octokit/request').defaults({ - baseUrl: 'http://github-enterprise.acme-inc.com/api/v3', + baseUrl: 'https://github-enterprise.acme-inc.com/api/v3', headers: { 'user-agent': 'myApp/1.2.3', authorization: `token 0000000000000000000000000000000000000001` @@ -249,7 +249,7 @@ You can call `.defaults()` again on the returned method, the defaults will casca ```js const myProjectRequest = request.defaults({ - baseUrl: 'http://github-enterprise.acme-inc.com/api/v3', + baseUrl: 'https://github-enterprise.acme-inc.com/api/v3', headers: { 'user-agent': 'myApp/1.2.3' },