Skip to content

Commit 657292e

Browse files
Trottrichardlau
authored andcommitted
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 `&lt;` instead. PR-URL: #34892 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Franziska Hinkelmann <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]>
1 parent fffba3a commit 657292e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

doc/api/cli.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -858,14 +858,14 @@ Print short summaries of calls to [`Atomics.wait()`][] to stderr.
858858
The output could look like this:
859859

860860
```text
861-
(node:15701) [Thread 0] Atomics.wait(<address> + 0, 1, inf) started
862-
(node:15701) [Thread 0] Atomics.wait(<address> + 0, 1, inf) did not wait because the values mismatched
863-
(node:15701) [Thread 0] Atomics.wait(<address> + 0, 0, 10) started
864-
(node:15701) [Thread 0] Atomics.wait(<address> + 0, 0, 10) timed out
865-
(node:15701) [Thread 0] Atomics.wait(<address> + 4, 0, inf) started
866-
(node:15701) [Thread 1] Atomics.wait(<address> + 4, -1, inf) started
867-
(node:15701) [Thread 0] Atomics.wait(<address> + 4, 0, inf) was woken up by another thread
868-
(node:15701) [Thread 1] Atomics.wait(<address> + 4, -1, inf) was woken up by another thread
861+
(node:15701) [Thread 0] Atomics.wait(&lt;address> + 0, 1, inf) started
862+
(node:15701) [Thread 0] Atomics.wait(&lt;address> + 0, 1, inf) did not wait because the values mismatched
863+
(node:15701) [Thread 0] Atomics.wait(&lt;address> + 0, 0, 10) started
864+
(node:15701) [Thread 0] Atomics.wait(&lt;address> + 0, 0, 10) timed out
865+
(node:15701) [Thread 0] Atomics.wait(&lt;address> + 4, 0, inf) started
866+
(node:15701) [Thread 1] Atomics.wait(&lt;address> + 4, -1, inf) started
867+
(node:15701) [Thread 0] Atomics.wait(&lt;address> + 4, 0, inf) was woken up by another thread
868+
(node:15701) [Thread 1] Atomics.wait(&lt;address> + 4, -1, inf) was woken up by another thread
869869
```
870870

871871
The fields here correspond to:

0 commit comments

Comments
 (0)