Browse Source

doc: fixes grammar in timers/tls

This commit fixes a few grammar issues located
within the doc files for timers and tls.

They primarily include incorrect use of a / an
and a single insertion of a comma.

same as [this PR](https://github.com/joyent/node/pull/8581)

Reviewed-By: Fedor Indutny <fedor@indutny.com>
PR-URL: https://github.com/iojs/io.js/pull/76
archived-io.js-v0.12
Brendan Ashworth 10 years ago
committed by Fedor Indutny
parent
commit
9bca8a0a91
  1. 4
      doc/api/timers.markdown
  2. 4
      doc/api/tls.markdown

4
doc/api/timers.markdown

@ -28,7 +28,7 @@ you can also pass arguments to the callback.
## clearInterval(intervalObject) ## clearInterval(intervalObject)
Stops a interval from triggering. Stops an interval from triggering.
## unref() ## unref()
@ -56,7 +56,7 @@ can also pass arguments to the callback.
Callbacks for immediates are queued in the order in which they were created. Callbacks for immediates are queued in the order in which they were created.
The entire callback queue is processed every event loop iteration. If you queue The entire callback queue is processed every event loop iteration. If you queue
an immediate from a inside an executing callback that immediate won't fire an immediate from inside an executing callback, that immediate won't fire
until the next event loop iteration. until the next event loop iteration.
## clearImmediate(immediateObject) ## clearImmediate(immediateObject)

4
doc/api/tls.markdown

@ -221,7 +221,7 @@ automatically set as a listener for the [secureConnection][] event. The
NOTE: Automatically shared between `cluster` module workers. NOTE: Automatically shared between `cluster` module workers.
- `sessionIdContext`: A string containing a opaque identifier for session - `sessionIdContext`: A string containing an opaque identifier for session
resumption. If `requestCert` is `true`, the default is MD5 hash value resumption. If `requestCert` is `true`, the default is MD5 hash value
generated from command-line. Otherwise, the default is not provided. generated from command-line. Otherwise, the default is not provided.
@ -501,7 +501,7 @@ connections using TLS or SSL.
`function (tlsSocket) {}` `function (tlsSocket) {}`
This event is emitted after a new connection has been successfully This event is emitted after a new connection has been successfully
handshaked. The argument is a instance of [tls.TLSSocket][]. It has all the handshaked. The argument is an instance of [tls.TLSSocket][]. It has all the
common stream methods and events. common stream methods and events.
`socket.authorized` is a boolean value which indicates if the `socket.authorized` is a boolean value which indicates if the

Loading…
Cancel
Save