From 1c0b89be4c1b20a4d518dcf13505dbcd748de68d Mon Sep 17 00:00:00 2001 From: codediverdev <169085203+codediverdev@users.noreply.github.com> Date: Sat, 22 Jun 2024 09:46:07 -0500 Subject: [PATCH] lib: fix typo in comment Small update in a realm.js documentation comment to correct `js2c.py` which was ported to `js2c.cc` and removed. PR-URL: https://github.com/nodejs/node/pull/53543 Reviewed-By: Joyee Cheung Reviewed-By: Antoine du Hamel Reviewed-By: Paolo Insogna Reviewed-By: Ethan Arrowood --- lib/internal/bootstrap/realm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/internal/bootstrap/realm.js b/lib/internal/bootstrap/realm.js index 9cb6a8add714d0..b448a40fce294f 100644 --- a/lib/internal/bootstrap/realm.js +++ b/lib/internal/bootstrap/realm.js @@ -31,7 +31,7 @@ // Internal JavaScript module loader: // - BuiltinModule: a minimal module system used to load the JavaScript core // modules found in lib/**/*.js and deps/**/*.js. All core modules are -// compiled into the node binary via node_javascript.cc generated by js2c.py, +// compiled into the node binary via node_javascript.cc generated by js2c.cc, // so they can be loaded faster without the cost of I/O. This class makes the // lib/internal/*, deps/internal/* modules and internalBinding() available by // default to core modules, and lets the core modules require itself via