doc: fix split infinitive in Hooks caveat

PR-URL: https://github.com/nodejs/node/pull/47550
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
pull/47422/head
Jacob Smith 2023-04-13 22:47:02 +02:00 committed by GitHub
parent 4afb25ccfd
commit 1c3cbf3c78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -736,7 +736,7 @@ prevent unintentional breaks in the chain.
Hooks are run in a separate thread, isolated from the main. That means it is a
different [realm](https://tc39.es/ecma262/#realm). The hooks thread may be
terminated by the main thread at any time, so do not depend on asynchronous
operations to (like `console.log`) complete.
operations (like `console.log`) to complete.
#### `resolve(specifier, context, nextResolve)`