Browse Source

doc: typo fixes on stream, tls and http

Reviewed-by: Trevor Norris <trev.norris@gmail.com>
v0.11.14-release
Kyle Robinson Young 11 years ago
committed by Trevor Norris
parent
commit
00004160a1
  1. 2
      doc/api/http.markdown
  2. 2
      doc/api/stream.markdown
  3. 7
      doc/api/tls.markdown

2
doc/api/http.markdown

@ -849,7 +849,7 @@ the client should send the request body.
Flush the request headers.
For effiency reasons, node.js normally buffers the request headers until you
For efficiency reasons, node.js normally buffers the request headers until you
call `request.end()` or write the first chunk of request data. It then tries
hard to pack the request headers and data into a single TCP packet.

2
doc/api/stream.markdown

@ -971,7 +971,7 @@ function SourceWrapper(options) {
self._source.readStop();
};
// When the source ends, we push the EOF-signalling `null` chunk
// When the source ends, we push the EOF-signaling `null` chunk
this._source.onend = function() {
self.push(null);
};

7
doc/api/tls.markdown

@ -154,7 +154,7 @@ automatically set as a listener for the [secureConnection][] event. The
`RC4` is used as a fallback for clients that speak on older version of
the TLS protocol. `RC4` has in recent years come under suspicion and
should be considered compromised for anything that is truly sensitive.
It is speculated that state-level actors posess the ability to break it.
It is speculated that state-level actors possess the ability to break it.
**NOTE**: Previous revisions of this section suggested `AES256-SHA` as an
acceptable cipher. Unfortunately, `AES256-SHA` is a CBC cipher and therefore
@ -573,8 +573,9 @@ Typical flow:
5. Client validates the response and either destroys socket or performs a
handshake.
NOTE: `issuer` could be null, if certficiate is self-signed or if issuer is not
in the root certificates list. (You could provide an issuer via `ca` option.)
NOTE: `issuer` could be null, if the certificate is self-signed or if the issuer
is not in the root certificates list. (You could provide an issuer via `ca`
option.)
NOTE: adding this event listener will have an effect only on connections
established after addition of event listener.

Loading…
Cancel
Save