From 657292e2dd4a60b5342080428cec519cd1bef1cb Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sun, 23 Aug 2020 10:37:58 -0700 Subject: [PATCH] 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 Reviewed-By: James M Snell Reviewed-By: Franziska Hinkelmann Reviewed-By: Trivikram Kamat --- doc/api/cli.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/api/cli.md b/doc/api/cli.md index 0c0bde1d4d6476..c5e0087822b0d6 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -858,14 +858,14 @@ Print short summaries of calls to [`Atomics.wait()`][] to stderr. The output could look like this: ```text -(node:15701) [Thread 0] Atomics.wait(
+ 0, 1, inf) started -(node:15701) [Thread 0] Atomics.wait(
+ 0, 1, inf) did not wait because the values mismatched -(node:15701) [Thread 0] Atomics.wait(
+ 0, 0, 10) started -(node:15701) [Thread 0] Atomics.wait(
+ 0, 0, 10) timed out -(node:15701) [Thread 0] Atomics.wait(
+ 4, 0, inf) started -(node:15701) [Thread 1] Atomics.wait(
+ 4, -1, inf) started -(node:15701) [Thread 0] Atomics.wait(
+ 4, 0, inf) was woken up by another thread -(node:15701) [Thread 1] Atomics.wait(
+ 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: