From d33d1899c4c5c63e82eb3a7a1784d2848ad6cedf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Sun, 23 Jan 2022 12:31:42 +0100 Subject: [PATCH] tools: fix typo in `tools/code_cache/README.md` PR-URL: https://github.com/nodejs/node/pull/41657 Reviewed-By: Richard Lau Reviewed-By: Rich Trott Reviewed-By: Colin Ihrig Reviewed-By: Mohammed Keyvanzadeh Reviewed-By: Mestery Reviewed-By: Antoine du Hamel --- tools/code_cache/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/code_cache/README.md b/tools/code_cache/README.md index f8428c24b0dd4b..8feb280caae585 100644 --- a/tools/code_cache/README.md +++ b/tools/code_cache/README.md @@ -2,7 +2,7 @@ This is the V8 code cache builder of Node.js. It pre-compiles all the JavaScript native modules of Node.js and serializes the code cache (including -the bytecodes) that will be embeded into the Node.js executable. When a Node.js +the bytecodes) that will be embedded into the Node.js executable. When a Node.js JavaScript native module is `require`d at runtime, Node.js can deserialize from the code cache instead of parsing the source code and generating the bytecode for it before execution, which should reduce the load time of these JavaScript