Skip to content

Commit 8bf42b4

Browse files
sam-githubaddaleax
authored andcommittedNov 22, 2016
doc: strip trailing whitespace
PR-URL: #9620 Reviewed-By: Roman Reiss <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 16819d2 commit 8bf42b4

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed
 

‎doc/api/crypto.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1620,7 +1620,7 @@ See the reference for other recommendations and details.
16201620

16211621
## Crypto Constants
16221622

1623-
The following constants exported by `crypto.constants` apply to various uses of
1623+
The following constants exported by `crypto.constants` apply to various uses of
16241624
the `crypto`, `tls`, and `https` modules and are generally specific to OpenSSL.
16251625

16261626
### OpenSSL Options
@@ -1639,13 +1639,13 @@ the `crypto`, `tls`, and `https` modules and are generally specific to OpenSSL.
16391639
<tr>
16401640
<td><code>SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION</code></td>
16411641
<td>Allows legacy insecure renegotiation between OpenSSL and unpatched
1642-
clients or servers. See
1642+
clients or servers. See
16431643
https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html.</td>
16441644
</tr>
16451645
<tr>
16461646
<td><code>SSL_OP_CIPHER_SERVER_PREFERENCE</code></td>
16471647
<td>Uses the server's preferences instead of the clients when selecting a
1648-
cipher. See
1648+
cipher. See
16491649
https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html.</td>
16501650
</tr>
16511651
<tr>

‎doc/api/net.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,7 @@ A factory function, which returns a new [`net.Socket`][] and automatically
765765
connects with the supplied `options`.
766766

767767
The options are passed to both the [`net.Socket`][] constructor and the
768-
[`socket.connect`][] method.
768+
[`socket.connect`][] method.
769769

770770
Passing `timeout` as an option will call [`socket.setTimeout()`][] after the socket is created, but before it is connecting.
771771

‎doc/api/v8.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ For example:
101101
added: v1.0.0
102102
-->
103103

104-
The `v8.setFlagsFromString()` method can be used to programmatically set
104+
The `v8.setFlagsFromString()` method can be used to programmatically set
105105
V8 command line flags. This method should be used with care. Changing settings
106106
after the VM has started may result in unpredictable behavior, including
107107
crashes and data loss; or it may simply do nothing.

‎doc/api/zlib.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Deflate/Inflate. It can be accessed using:
99
const zlib = require('zlib');
1010
```
1111

12-
Compressing or decompressing a stream (such as a file) can be accomplished by
12+
Compressing or decompressing a stream (such as a file) can be accomplished by
1313
piping the source stream data through a `zlib` stream into a destination stream:
1414

1515
```js
@@ -46,12 +46,12 @@ zlib.unzip(buffer, (err, buffer) => {
4646
## Compressing HTTP requests and responses
4747

4848
The `zlib` module can be used to implement support for the `gzip` and `deflate`
49-
content-encoding mechanisms defined by
49+
content-encoding mechanisms defined by
5050
[HTTP](https://tools.ietf.org/html/rfc7230#section-4.2).
5151

5252
The HTTP [`Accept-Encoding`][] header is used within an http request to identify
53-
the compression encodings accepted by the client. The [`Content-Encoding`][]
54-
header is used to identify the compression encodings actually applied to a
53+
the compression encodings accepted by the client. The [`Content-Encoding`][]
54+
header is used to identify the compression encodings actually applied to a
5555
message.
5656

5757
**Note: the examples given below are drastically simplified to show
@@ -230,7 +230,7 @@ not surprising. This section is taken almost directly from the
230230
[zlib documentation][]. See <http://zlib.net/manual.html#Constants> for more
231231
details.
232232

233-
*Note*: Previously, the constants were available directly from
233+
*Note*: Previously, the constants were available directly from
234234
`require('zlib')`, for instance `zlib.Z_NO_FLUSH`. Accessing the constants
235235
directly from the module is currently still possible but should be considered
236236
deprecated.
@@ -444,8 +444,8 @@ Returns a new [Unzip][] object with an [options][].
444444

445445
<!--type=misc-->
446446

447-
All of these take a [Buffer][] or string as the first argument, an optional
448-
second argument to supply options to the `zlib` classes and will call the
447+
All of these take a [Buffer][] or string as the first argument, an optional
448+
second argument to supply options to the `zlib` classes and will call the
449449
supplied callback with `callback(error, result)`.
450450

451451
Every method has a `*Sync` counterpart, which accept the same arguments, but

0 commit comments

Comments
 (0)
Please sign in to comment.