Browse Source

Update endpoint from HTTP to HTTPS (#5622)

hjpotter92 7 years ago
parent
commit
fe96d19421
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/node/node.plugin.zsh

+ 1 - 1
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"
 }