diff options
author | hjpotter92 <hjpotter92@users.noreply.github.com> | 2016-11-11 07:47:43 +0530 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2016-11-11 03:17:43 +0100 |
commit | fe96d194210854e2dc170a226b166253091f2fc0 (patch) | |
tree | 4207c7f60932b4f9cdbd01d7ff36445249571f4a /plugins/node/node.plugin.zsh | |
parent | 6685aac42cf1feb0c686ef84516c97e1113678a7 (diff) | |
download | zsh-fe96d194210854e2dc170a226b166253091f2fc0.tar.gz zsh-fe96d194210854e2dc170a226b166253091f2fc0.tar.bz2 zsh-fe96d194210854e2dc170a226b166253091f2fc0.zip |
Update endpoint from HTTP to HTTPS (#5622)
Diffstat (limited to 'plugins/node/node.plugin.zsh')
-rw-r--r-- | plugins/node/node.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/node/node.plugin.zsh b/plugins/node/node.plugin.zsh index e2f18a032..e196662c7 100644 --- a/plugins/node/node.plugin.zsh +++ b/plugins/node/node.plugin.zsh @@ -2,5 +2,5 @@ # TODO: Make the section part easier to use. function node-docs { local section=${1:-all} - open_command "http://nodejs.org/docs/$(node --version)/api/$section.html" + open_command "https://nodejs.org/docs/$(node --version)/api/$section.html" } |