s/HTTPS/SSL/ where appropriate
authorAria Stewart <aredridel@nbtsc.org>
Sat, 21 Aug 2010 21:26:42 +0000 (15:26 -0600)
committerRyan Dahl <ry@tinyclouds.org>
Sun, 22 Aug 2010 19:31:58 +0000 (12:31 -0700)
doc/api.markdown

index 4a41a2b562325dd285f2a606de76c1511ede4266..6e4b38307a3ba4d5e1bfc1f3434e26eb35a46b1f 100644 (file)
@@ -2225,7 +2225,7 @@ See `connect()`.
 
 `function () { }`
 
-Emitted when a stream connection successfully establishes a HTTPS handshake with its peer.
+Emitted when a stream connection successfully establishes an SSL handshake with its peer.
 
 
 ### Event: 'data'
@@ -2314,9 +2314,9 @@ received.
 
 ### stream.setSecure([credentials])
 
-Enables HTTPS support for the stream, with the crypto module credentials specifying the private key and certificate of the stream, and optionally the CA certificates for use in peer authentication.
+Enables SSL support for the stream, with the crypto module credentials specifying the private key and certificate of the stream, and optionally the CA certificates for use in peer authentication.
 
-If the credentials hold one ore more CA certificates, then the stream will request for the peer to submit a client certificate as part of the HTTPS connection handshake. The validity and content of this can be accessed via verifyPeer() and getPeerCertificate().
+If the credentials hold one ore more CA certificates, then the stream will request for the peer to submit a client certificate as part of the SSL connection handshake. The validity and content of this can be accessed via verifyPeer() and getPeerCertificate().
 
 ### stream.verifyPeer()