Skip to content

Commit 0acebb9

Browse files
JeroenManderslootMylesBorins
authored andcommitted
doc: fix occurences of "the the"
I identified a number of files where it said "the the" in the comments of the source code and in general documentation texts. I replaced these occurences with a single instance of "the". PR-URL: #11711 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
1 parent 8de856b commit 0acebb9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

doc/api/child_process.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ the process is spawned. The default options are:
193193
}
194194
```
195195

196-
If `timeout` is greater than `0`, the parent will send the the signal
196+
If `timeout` is greater than `0`, the parent will send the signal
197197
identified by the `killSignal` property (the default is `'SIGTERM'`) if the
198198
child runs longer than `timeout` milliseconds.
199199

doc/api/stream.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ If the data to be written can be generated or fetched on demand, it is
471471
recommended to encapsulate the logic into a [Readable][] and use
472472
[`stream.pipe()`][]. However, if calling `write()` is preferred, it is
473473
possible to respect backpressure and avoid memory issues using the
474-
the [`'drain'`][] event:
474+
[`'drain'`][] event:
475475

476476
```js
477477
function write (data, cb) {

src/cares_wrap.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,8 +221,8 @@ static void ares_sockstate_cb(void* data,
221221
task = ares_task_create(env, sock);
222222
if (task == nullptr) {
223223
/* This should never happen unless we're out of memory or something */
224-
/* is seriously wrong. The socket won't be polled, but the the query */
225-
/* will eventually time out. */
224+
/* is seriously wrong. The socket won't be polled, but the query will */
225+
/* eventually time out. */
226226
return;
227227
}
228228

0 commit comments

Comments
 (0)