File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ the native addon will also need to have a C/C++ toolchain installed.
131131
132132For Linux developers, the necessary C/C++ toolchain packages are readily
133133available. [GCC][] is widely used in the Node.js community to build and
134- test across a variety of plarforms . For many developers, the [LLVM][]
134+ test across a variety of platforms . For many developers, the [LLVM][]
135135compiler infrastructure is also a good choice.
136136
137137For Mac developers, [Xcode][] offers all the required compiler tools.
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ const { port1 } = new MessageChannel();
110110port1 .postMessage (typedArray1, [ typedArray1 .buffer ]);
111111
112112// The following line prints the contents of typedArray1 -- it still owns its
113- // memory and has been cloned, not transfered . Without `markAsUntransferable()`,
113+ // memory and has been cloned, not transferred . Without `markAsUntransferable()`,
114114// this would print an empty Uint8Array. typedArray2 is intact as well.
115115console .log (typedArray1);
116116console .log (typedArray2);
You can’t perform that action at this time.
0 commit comments