From 430e63f6ebcf35a5b1305338b72eff423a36341e Mon Sep 17 00:00:00 2001 From: Ankush Goel Date: Tue, 24 Sep 2024 22:23:42 +0530 Subject: [PATCH] FIX: Typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e585bc98..3621cb49 100644 --- a/README.md +++ b/README.md @@ -279,7 +279,7 @@ Start a CPU profiler in the isolate, for performance profiling. It only collects the isolate is active in a thread. ##### `isolate.stopCpuProfiler(title)` *[Promise>]* -Stop a CPU profiler previously started using the same title. It returns an array of profiles dependening +Stop a CPU profiler previously started using the same title. It returns an array of profiles depending on how many times the isolate get activated in a thread. @@ -548,7 +548,7 @@ SharedArrayBuffer will point to the same underlying data. After passing a Shared ExternalCopy for the first time isolated-vm will take over management of the underlying memory block, so a "copied" SharedArrayBuffer can outlive the isolate that created the memory originally. -All other objects will be copied in seralized form using the [structured clone algorithm](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm). +All other objects will be copied in serialized form using the [structured clone algorithm](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm). `ExternalCopy` can copy objects with deeply nested *transferable* objects. For example: ```js