Skip to content

Commit

Permalink
doc: use "previous"/"preceding" instead of "above" as modifier
Browse files Browse the repository at this point in the history
Refs: https://docs.microsoft.com/en-us/style-guide/a-z-word-list-term-collections/a/above

PR-URL: #34877
Reviewed-By: Jan Krems <jan.krems@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
  • Loading branch information
Trott authored and addaleax committed Sep 22, 2020
1 parent 76d991c commit 222fcb1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doc/api/esm.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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: <string>}, 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',
};
Expand Down

0 comments on commit 222fcb1

Please sign in to comment.