Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0acebb9

Browse filesBrowse 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
Copy full SHA for 0acebb9

File tree

Expand file treeCollapse file tree

3 files changed

+4
-4
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

3 files changed

+4
-4
lines changed
Open diff view settings
Collapse file

‎doc/api/child_process.md‎

Copy file name to clipboardExpand all lines: doc/api/child_process.md
+1-1Lines changed: 1 addition & 1 deletion
  • Display the source diff
  • Display the rich diff
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

Collapse file

‎doc/api/stream.md‎

Copy file name to clipboardExpand all lines: doc/api/stream.md
+1-1Lines changed: 1 addition & 1 deletion
  • Display the source diff
  • Display the rich diff
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) {
Collapse file

‎src/cares_wrap.cc‎

Copy file name to clipboardExpand all lines: src/cares_wrap.cc
+2-2Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.