doc: fix broken markdown/display in cli.html
The `<` character is interpreted as the start of an HTML tag, making the word `address` not render and the rest of the document rendered with a grey background and in italics. Use `<` instead. PR-URL: https://github.com/nodejs/node/pull/34892 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
This commit is contained in:
parent
565d993968
commit
a7572d1422
@ -887,14 +887,14 @@ Print short summaries of calls to [`Atomics.wait()`][] to stderr.
|
||||
The output could look like this:
|
||||
|
||||
```text
|
||||
(node:15701) [Thread 0] Atomics.wait(<address> + 0, 1, inf) started
|
||||
(node:15701) [Thread 0] Atomics.wait(<address> + 0, 1, inf) did not wait because the values mismatched
|
||||
(node:15701) [Thread 0] Atomics.wait(<address> + 0, 0, 10) started
|
||||
(node:15701) [Thread 0] Atomics.wait(<address> + 0, 0, 10) timed out
|
||||
(node:15701) [Thread 0] Atomics.wait(<address> + 4, 0, inf) started
|
||||
(node:15701) [Thread 1] Atomics.wait(<address> + 4, -1, inf) started
|
||||
(node:15701) [Thread 0] Atomics.wait(<address> + 4, 0, inf) was woken up by another thread
|
||||
(node:15701) [Thread 1] Atomics.wait(<address> + 4, -1, inf) was woken up by another thread
|
||||
(node:15701) [Thread 0] Atomics.wait(<address> + 0, 1, inf) started
|
||||
(node:15701) [Thread 0] Atomics.wait(<address> + 0, 1, inf) did not wait because the values mismatched
|
||||
(node:15701) [Thread 0] Atomics.wait(<address> + 0, 0, 10) started
|
||||
(node:15701) [Thread 0] Atomics.wait(<address> + 0, 0, 10) timed out
|
||||
(node:15701) [Thread 0] Atomics.wait(<address> + 4, 0, inf) started
|
||||
(node:15701) [Thread 1] Atomics.wait(<address> + 4, -1, inf) started
|
||||
(node:15701) [Thread 0] Atomics.wait(<address> + 4, 0, inf) was woken up by another thread
|
||||
(node:15701) [Thread 1] Atomics.wait(<address> + 4, -1, inf) was woken up by another thread
|
||||
```
|
||||
|
||||
The fields here correspond to:
|
||||
|
Loading…
x
Reference in New Issue
Block a user