summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorBrian White <mscdex@mscdex.net>2016-08-14 18:25:21 -0400
committerBrian White <mscdex@mscdex.net>2016-08-29 21:44:58 -0400
commit2cc7fa5e7dabdf10bf26efc4ab8dbffd36dba23e (patch)
tree0f7a89c1063b119328fe409004cee78fb1e9d49a /doc
parent07dbf7313d0b46bf4452c63aee72f91ea587598c (diff)
downloadandroid-node-v8-2cc7fa5e7dabdf10bf26efc4ab8dbffd36dba23e.tar.gz
android-node-v8-2cc7fa5e7dabdf10bf26efc4ab8dbffd36dba23e.tar.bz2
android-node-v8-2cc7fa5e7dabdf10bf26efc4ab8dbffd36dba23e.zip
http: remove deprecated Client interface
PR-URL: https://github.com/nodejs/node/pull/8104 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/http.md11
1 files changed, 0 insertions, 11 deletions
diff --git a/doc/api/http.md b/doc/api/http.md
index d8d4ef03f4..7ddf2c4816 100644
--- a/doc/api/http.md
+++ b/doc/api/http.md
@@ -1336,17 +1336,6 @@ A collection of all the standard HTTP response status codes, and the
short description of each. For example, `http.STATUS_CODES[404] === 'Not
Found'`.
-## http.createClient([port][, host])
-<!-- YAML
-added: v0.1.13
-deprecated: v0.3.6
--->
-
-> Stability: 0 - Deprecated: Use [`http.request()`][] instead.
-
-Constructs a new HTTP client. `port` and `host` refer to the server to be
-connected to.
-
## http.createServer([requestListener])
<!-- YAML
added: v0.1.13