diff options
author | isaacs <i@izs.me> | 2012-02-27 11:09:34 -0800 |
---|---|---|
committer | isaacs <i@izs.me> | 2012-02-29 16:04:52 -0800 |
commit | c205d3b53a142a7490e692cec86ecf2f657bc998 (patch) | |
tree | 9cb534aadb1fd3fae93afdcd677d50ecfd74bf31 /doc | |
parent | 4f24b20fcbfe32acb52b534c1ec8f1db1724a075 (diff) | |
download | node-c205d3b53a142a7490e692cec86ecf2f657bc998.tar.gz |
doc refactor: https
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/https.markdown | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/api/https.markdown b/doc/api/https.markdown index 0c019349b..1216ccd46 100644 --- a/doc/api/https.markdown +++ b/doc/api/https.markdown @@ -1,9 +1,9 @@ -## HTTPS +# HTTPS HTTPS is the HTTP protocol over TLS/SSL. In Node this is implemented as a separate module. -## https.Server +## Class: https.Server This class is a subclass of `tls.Server` and emits events same as `http.Server`. See `http.Server` for more information. @@ -152,7 +152,7 @@ Example: }); -## https.Agent +## Class: https.Agent An Agent object for HTTPS similar to [http.Agent](http.html#http.Agent). See [https.request()](#https.request) for more information. |