File tree Expand file tree Collapse file tree 16 files changed +26
-26
lines changed Open diff view settings
Expand file tree Collapse file tree 16 files changed +26
-26
lines changed Open diff view settings
Original file line number Diff line number Diff line change @@ -269,7 +269,7 @@ the path specified by `--snapshot-blob`.
269269``` console
270270$ echo " globalThis.foo = 'I am from the snapshot'" > snapshot.js
271271
272- # Run snapshot.js to intialize the application and snapshot the
272+ # Run snapshot.js to initialize the application and snapshot the
273273# state of it into snapshot.blob.
274274$ node --snapshot-blob snapshot.blob --build-snapshot snapshot.js
275275
Original file line number Diff line number Diff line change @@ -567,7 +567,7 @@ applied to transform the message data before it becomes the context value for
567567the store. The prior storage context is accessible from within the transform
568568function in cases where context linking is required.
569569
570- The context applied to the store should be accesible in any async code which
570+ The context applied to the store should be accessible in any async code which
571571continues from execution which began during the given function, however
572572there are some situations in which [ context loss] [ ] may occur.
573573
@@ -956,7 +956,7 @@ channels.asyncStart.bindStore(myStore, (data) => {
956956
957957A TracingChannel is a collection of several diagnostics\_ channels representing
958958specific points in the execution lifecycle of a single traceable action. The
959- behaviour is split into five diagnostics\_ channels consisting of ` start ` ,
959+ behavior is split into five diagnostics\_ channels consisting of ` start ` ,
960960` end ` , ` asyncStart ` , ` asyncEnd ` , and ` error ` . A single traceable action will
961961share the same event object between all events, this can be helpful for
962962managing correlation through a weakmap.
Original file line number Diff line number Diff line change @@ -212,7 +212,7 @@ If domains are in use, then all **new** `EventEmitter` objects (including
212212Stream objects, requests, responses, etc.) will be implicitly bound to
213213the active domain at the time of their creation.
214214
215- Additionally, callbacks passed to lowlevel event loop requests (such as
215+ Additionally, callbacks passed to low-level event loop requests (such as
216216to ` fs.open() ` , or other callback-taking methods) will automatically be
217217bound to the active domain. If they throw, then the domain will catch
218218the error.
@@ -409,7 +409,7 @@ specified emitter.
409409* ` ...args ` {any}
410410
411411Run the supplied function in the context of the domain, implicitly
412- binding all event emitters, timers, and lowlevel requests that are
412+ binding all event emitters, timers, and low-level requests that are
413413created in that context. Optionally, arguments can be passed to
414414the function.
415415
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ Create a new instance of the `inspector.Session` class. The inspector session
5454needs to be connected through [ ` session.connect() ` ] [ ] before the messages
5555can be dispatched to the inspector backend.
5656
57- When using ` Session ` , the object outputed by the console API will not be
57+ When using ` Session ` , the object outputted by the console API will not be
5858released, unless we performed manually ` Runtime.DiscardConsoleEntries `
5959command.
6060
@@ -227,7 +227,7 @@ Create a new instance of the `inspector.Session` class. The inspector session
227227needs to be connected through [ ` session.connect() ` ] [ ] before the messages
228228can be dispatched to the inspector backend.
229229
230- When using ` Session ` , the object outputed by the console API will not be
230+ When using ` Session ` , the object outputted by the console API will not be
231231released, unless we performed manually ` Runtime.DiscardConsoleEntries `
232232command.
233233
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ Node-API is a C API that ensures ABI stability across Node.js versions
3737and different compiler levels. A C++ API can be easier to use.
3838To support using C++, the project maintains a
3939C++ wrapper module called [`node-addon-api`][].
40- This wrapper provides an inlineable C++ API. Binaries built
40+ This wrapper provides an inlinable C++ API. Binaries built
4141with `node-addon-api` will depend on the symbols for the Node-API C-based
4242functions exported by Node.js. `node-addon-api` is a more
4343efficient way to write code that calls Node-API. Take, for example, the
@@ -542,7 +542,7 @@ the call will succeed and `data` will be set to `NULL`.
542542
543543## Basic Node-API data types
544544
545- Node-API exposes the following fundamental datatypes as abstractions that are
545+ Node-API exposes the following fundamental data types as abstractions that are
546546consumed by the various APIs. These APIs should be treated as opaque,
547547introspectable only with other Node-API calls.
548548
Original file line number Diff line number Diff line change @@ -1481,7 +1481,7 @@ console.log(values, positionals);
14811481
14821482### ` parseArgs ` ` tokens `
14831483
1484- Detailed parse information is available for adding custom behaviours by
1484+ Detailed parse information is available for adding custom behaviors by
14851485specifying ` tokens: true ` in the configuration.
14861486The returned tokens have properties describing:
14871487
Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ changes:
141141 the real paths to those directories on the host machine.
142142 * `returnOnExit` {boolean} By default, when WASI applications call
143143 `__wasi_proc_exit()` `wasi.start()` will return with the exit code
144- specified rather than terminatng the process. Setting this option to
144+ specified rather than terminating the process. Setting this option to
145145 `false` will cause the Node.js process to exit with the specified
146146 exit code instead. **Default:** `true`.
147147 * `stdin` {integer} The file descriptor used as standard input in the
Original file line number Diff line number Diff line change @@ -1009,7 +1009,7 @@ changes:
10091009 * ` stackSizeMb ` {number} The default maximum stack size for the thread.
10101010 Small values may lead to unusable Worker instances. ** Default:** ` 4 ` .
10111011 * ` name ` {string} An optional ` name ` to be appended to the worker title
1012- for debuggin /identification purposes, making the final title as
1012+ for debugging /identification purposes, making the final title as
10131013 ` [worker ${id}] ${name} ` . ** Default:** ` '' ` .
10141014
10151015### Event: ` 'error' `
Original file line number Diff line number Diff line change 33Node.js uses [ V8] ( https://v8.dev/ ) as its JavaScript engine.
44Embedding functions implemented in C++ incur a high overhead, so V8
55provides an API to implement native functions which may be invoked directly
6- from JITted code. These functions also come with additional constraints,
6+ from JIT-ed code. These functions also come with additional constraints,
77for example, they may not trigger garbage collection.
88
99## Limitations
Original file line number Diff line number Diff line change @@ -251,8 +251,8 @@ the new tooling.
251251This method is responsible for parsing the ` <--YAML snippets --> ` and
252252transforming them into HTML elements.
253253
254- It follows a certain kind of "schema" that basically constitues in the following
255- options:
254+ It follows a certain kind of "schema" that basically constitutes in the
255+ following options:
256256
257257| YAML Key | Description | Example | Example Result | Available on new tooling |
258258| ------------- | ------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------- | --------------------------- | ------------------------ |
You can’t perform that action at this time.
0 commit comments