From 222fcb1e6669e59497f95f5336ab1942c0ab2684 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sat, 22 Aug 2020 09:41:19 -0700 Subject: [PATCH] doc: use "previous"/"preceding" instead of "above" as modifier Refs: https://docs.microsoft.com/en-us/style-guide/a-z-word-list-term-collections/a/above PR-URL: https://github.com/nodejs/node/pull/34877 Reviewed-By: Jan Krems Reviewed-By: Matteo Collina Reviewed-By: Benjamin Gruenbaum Reviewed-By: Anto Aravinth Reviewed-By: Franziska Hinkelmann Reviewed-By: Trivikram Kamat --- doc/api/esm.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/api/esm.md b/doc/api/esm.md index 4381f66d1a4b93..dc543091d75010 100644 --- a/doc/api/esm.md +++ b/doc/api/esm.md @@ -95,7 +95,7 @@ until the root of the volume is reached. ``` ```bash -# In same folder as above package.json +# In same folder as preceding package.json node my-app.js # Runs as ES module ``` @@ -527,7 +527,7 @@ import { something } from 'a-package'; // Imports "something" from ./main.mjs. Self-referencing is available only if `package.json` has `exports`, and will allow importing only what that `exports` (in the `package.json`) allows. -So the code below, given the package above, will generate a runtime error: +So the code below, given the previous package, will generate a runtime error: ```js // ./another-module.mjs @@ -637,7 +637,7 @@ CommonJS entry point for `require`. } ``` -The above example uses explicit extensions `.mjs` and `.cjs`. +The preceding example uses explicit extensions `.mjs` and `.cjs`. If your files use the `.js` extension, `"type": "module"` will cause such files to be treated as ES modules, just as `"type": "commonjs"` would cause them to be treated as CommonJS. @@ -1221,7 +1221,7 @@ export async function getFormat(url, context, defaultGetFormat) { if (Math.random() > 0.5) { // Some condition. // For some or all URLs, do some custom logic for determining format. // Always return an object of the form {format: }, where the - // format is one of the strings in the table above. + // format is one of the strings in the preceding table. return { format: 'module', };