doc: adjust wording to eliminate awkward typography

PR-URL: https://github.com/nodejs/node/pull/45398
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Jacob Smith <jacob@frende.me>
This commit is contained in:
Konv 2022-11-14 01:01:41 +08:00 committed by GitHub
parent ce16bf553f
commit c4d75ea104
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -90,8 +90,8 @@ By default, Node.js will treat the following as CommonJS modules:
* Files with an extension that is not `.mjs`, `.cjs`, `.json`, `.node`, or `.js`
(when the nearest parent `package.json` file contains a top-level field
[`"type"`][] with a value of `"module"`, those files will be recognized as
CommonJS modules only if they are being `require`d, not when used as the
command-line entry point of the program).
CommonJS modules only if they are being included via `require()`, not when
used as the command-line entry point of the program).
See [Determining module system][] for more details.