From 1a72b7500728092411667bfdf103ca1694b37aaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Sat, 28 May 2022 14:09:47 +0200 Subject: [PATCH] doc: use serial comma in worker_threads docs Refs: https://github.com/nodejs/node/pull/11321 Refs: https://github.com/nodejs/node/pull/17384 PR-URL: https://github.com/nodejs/node/pull/43220 Reviewed-By: Michael Dawson Reviewed-By: Luigi Pinca Reviewed-By: Mohammed Keyvanzadeh --- doc/api/worker_threads.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/api/worker_threads.md b/doc/api/worker_threads.md index eea21aec60bdb5..0515cf0c27e446 100644 --- a/doc/api/worker_threads.md +++ b/doc/api/worker_threads.md @@ -623,7 +623,7 @@ circularData.foo = circularData; port2.postMessage(circularData); ``` -`transferList` may be a list of [`ArrayBuffer`][], [`MessagePort`][] and +`transferList` may be a list of [`ArrayBuffer`][], [`MessagePort`][], and [`FileHandle`][] objects. After transferring, they are not usable on the sending side of the channel anymore (even if they are not contained in `value`). Unlike with @@ -826,8 +826,8 @@ Most Node.js APIs are available inside of it. Notable differences inside a Worker environment are: -* The [`process.stdin`][], [`process.stdout`][] and [`process.stderr`][] - may be redirected by the parent thread. +* The [`process.stdin`][], [`process.stdout`][], and [`process.stderr`][] + streams may be redirected by the parent thread. * The [`require('node:worker_threads').isMainThread`][] property is set to `false`. * The [`require('node:worker_threads').parentPort`][] message port is available. * [`process.exit()`][] does not stop the whole program, just the single thread,