From 61affd77a7fff610620fee7e010b4c5c8526608c Mon Sep 17 00:00:00 2001 From: shallow-beach <96891913+shallow-beach@users.noreply.github.com> Date: Thu, 22 Aug 2024 17:52:53 -0700 Subject: [PATCH] doc: fix capitalization in module.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/54488 Reviewed-By: Antoine du Hamel Reviewed-By: Ulises Gascón Reviewed-By: Luigi Pinca Reviewed-By: Jake Yuesong Li --- doc/api/modules.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/modules.md b/doc/api/modules.md index b64cbd0e261b84..56d435115929d8 100644 --- a/doc/api/modules.md +++ b/doc/api/modules.md @@ -417,7 +417,7 @@ described in greater detail elsewhere in this documentation. The built-in modules are defined within the Node.js source and are located in the `lib/` folder. -built-in modules can be identified using the `node:` prefix, in which case +Built-in modules can be identified using the `node:` prefix, in which case it bypasses the `require` cache. For instance, `require('node:http')` will always return the built in HTTP module, even if there is `require.cache` entry by that name.