From 87d0d8c7d48e7261157fde1cb130ca460dba406c Mon Sep 17 00:00:00 2001 From: Shajan Jacob Date: Mon, 10 Jun 2019 17:45:11 +0530 Subject: [PATCH] doc: fix minor typo PR-URL: https://github.com/nodejs/node/pull/28148 Reviewed-By: Gireesh Punathil Reviewed-By: James M Snell Reviewed-By: Trivikram Kamat Reviewed-By: Colin Ihrig Reviewed-By: Rich Trott --- doc/api/worker_threads.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/worker_threads.md b/doc/api/worker_threads.md index 0e6444b7c664f5..fa409627ebc472 100644 --- a/doc/api/worker_threads.md +++ b/doc/api/worker_threads.md @@ -306,7 +306,7 @@ In particular, the significant differences to `JSON` are: - `value` may contain circular references. - `value` may contain instances of builtin JS types such as `RegExp`s, `BigInt`s, `Map`s, `Set`s, etc. -- `value` may contained typed arrays, both using `ArrayBuffer`s +- `value` may contain typed arrays, both using `ArrayBuffer`s and `SharedArrayBuffer`s. - `value` may contain [`WebAssembly.Module`][] instances. - `value` may not contain native (C++-backed) objects other than `MessagePort`s.