From 0dc508070f6f3e1811cd574ade6125116749e48e Mon Sep 17 00:00:00 2001 From: Jacob Smith <3012099+JakobJingleheimer@users.noreply.github.com> Date: Thu, 13 Apr 2023 22:47:02 +0200 Subject: [PATCH] doc: fix split infinitive in Hooks caveat PR-URL: https://github.com/nodejs/node/pull/47550 Reviewed-By: Antoine du Hamel Reviewed-By: Moshe Atlow Reviewed-By: Geoffrey Booth --- doc/api/esm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/esm.md b/doc/api/esm.md index 5bb121800aa934..1169ec0854da1f 100644 --- a/doc/api/esm.md +++ b/doc/api/esm.md @@ -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)`