Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: fix markdown indentation in lists #40142

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
doc: fix markdown indentation in lists
  • Loading branch information
targos committed Sep 19, 2021

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit c67678b5243e9c5fe0bbfeb6cabcb8bca375a136
4 changes: 2 additions & 2 deletions doc/api/esm.md
Original file line number Diff line number Diff line change
@@ -615,7 +615,7 @@ CommonJS modules loaded.
* `defaultResolve` {Function} The Node.js default resolver.
* Returns: {Object}
* `format` {string|null|undefined}
`'builtin' | 'commonjs' | 'json' | 'module' | 'wasm'`
`'builtin' | 'commonjs' | 'json' | 'module' | 'wasm'`
* `url` {string} The absolute url to the import target (such as `file://…`)

The `resolve` hook returns the resolved file URL for a given module specifier
@@ -686,7 +686,7 @@ export async function resolve(specifier, context, defaultResolve) {
* `url` {string}
* `context` {Object}
* `format` {string|null|undefined} The format optionally supplied by the
`resolve` hook.
`resolve` hook.
* `defaultLoad` {Function}
* Returns: {Object}
* `format` {string}
2 changes: 1 addition & 1 deletion doc/api/process.md
Original file line number Diff line number Diff line change
@@ -2596,7 +2596,7 @@ tarball.
that are no longer supported).
* `'Dubnium'` for the 10.x LTS line beginning with 10.13.0.
* `'Erbium'` for the 12.x LTS line beginning with 12.13.0.
For other LTS Release code names, see [Node.js Changelog Archive](https://github.com/nodejs/node/blob/HEAD/doc/changelogs/CHANGELOG_ARCHIVE.md)
For other LTS Release code names, see [Node.js Changelog Archive](https://github.com/nodejs/node/blob/HEAD/doc/changelogs/CHANGELOG_ARCHIVE.md)

<!-- eslint-skip -->
```js
2 changes: 2 additions & 0 deletions doc/api/tls.md
Original file line number Diff line number Diff line change
@@ -1493,6 +1493,7 @@ changes:
or `null` to stop the negotiation process. `psk` must be
compatible with the selected cipher's digest.
`identity` must use UTF-8 encoding.

When negotiating TLS-PSK (pre-shared keys), this function is called
with optional identity `hint` provided by the server or `null`
in case of TLS 1.3 where `hint` was removed.
@@ -1928,6 +1929,7 @@ changes:
* Returns: {Buffer|TypedArray|DataView} pre-shared key that must either be
a buffer or `null` to stop the negotiation process. Returned PSK must be
compatible with the selected cipher's digest.

When negotiating TLS-PSK (pre-shared keys), this function is called
with the identity provided by the client.
If the return value is `null` the negotiation process will stop and an
3 changes: 1 addition & 2 deletions doc/api/tty.md
Original file line number Diff line number Diff line change
@@ -184,8 +184,7 @@ Returns:
* `1` for 2,
* `4` for 16,
* `8` for 256,
* `24` for 16,777,216
colors supported.
* `24` for 16,777,216 colors supported.

Use this to determine what colors the terminal supports. Due to the nature of
colors in terminals it is possible to either have false positives or false
2 changes: 1 addition & 1 deletion doc/api/vm.md
Original file line number Diff line number Diff line change
@@ -798,7 +798,7 @@ added:
* `evaluateCallback` {Function} Called when the module is evaluated.
* `options`
* `identifier` {string} String used in stack traces.
**Default:** `'vm:module(i)'` where `i` is a context-specific ascending
**Default:** `'vm:module(i)'` where `i` is a context-specific ascending
index.
* `context` {Object} The [contextified][] object as returned by the
`vm.createContext()` method, to compile and evaluate this `Module` in.