Skip to content

Commit

Permalink
Fix repeated word "as" (#397)
Browse files Browse the repository at this point in the history
  • Loading branch information
pavlokolodka committed Jan 19, 2024
1 parent f6cc843 commit c4f99f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ can then be quickly copied into any isolate without any extra thread synchroniza
isolate. This operation completes in constant time since it doesn't have to copy an arbitrarily
large object. This only applies to ArrayBuffer and TypedArray instances.

Primitive values can be copied exactly as they are. Date objects will be copied as as Dates.
Primitive values can be copied exactly as they are. Date objects will be copied as Dates.
ArrayBuffers, TypedArrays, and DataViews will be copied in an efficient format. SharedArrayBuffers
will simply copy a reference to the existing memory and when copied into another isolate the new
SharedArrayBuffer will point to the same underlying data. After passing a SharedArrayBuffer to
Expand Down

0 comments on commit c4f99f7

Please sign in to comment.