Browse Source

doc: clarify protocol default in http.request()

The previously listed default of 'http' is incorrect, and
causes an error to be thrown. This commit changes it to the
correct value of 'http:'

Fixes: https://github.com/nodejs/node/issues/4712
PR-URL: https://github.com/nodejs/node/pull/4714
Reviewed-By: James M Snell <jasnell@gmail.com>
process-exit-stdio-flushing
cjihrig 9 years ago
parent
commit
212a44df03
  1. 2
      doc/api/http.markdown

2
doc/api/http.markdown

@ -1008,7 +1008,7 @@ automatically parsed with [`url.parse()`][].
Options:
- `protocol`: Protocol to use. Defaults to `'http'`.
- `protocol`: Protocol to use. Defaults to `'http:'`.
- `host`: A domain name or IP address of the server to issue the request to.
Defaults to `'localhost'`.
- `hostname`: Alias for `host`. To support [`url.parse()`][] `hostname` is

Loading…
Cancel
Save