Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: fix grammar in tls and timers #195

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/api/timers.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ you can also pass arguments to the callback.

## clearInterval(intervalObject)

Stops a interval from triggering.
Stops an interval from triggering.

## unref()

Expand Down
4 changes: 2 additions & 2 deletions doc/api/tls.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ automatically set as a listener for the [secureConnection][] event. The

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
generated from command-line. Otherwise, the default is not provided.

Expand Down Expand Up @@ -503,7 +503,7 @@ connections using TLS or SSL.
`function (tlsSocket) {}`

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.

`socket.authorized` is a boolean value which indicates if the
Expand Down