From d3569b623ccd593c9ef62fcaf0aba2711dc7fbfa Mon Sep 17 00:00:00 2001 From: James M Snell Date: Mon, 5 Feb 2018 21:55:16 -0800 Subject: doc: remove **Note:** tags Remove the various **Note:** prefixes throughout the docs. PR-URL: https://github.com/nodejs/node/pull/18592 Reviewed-By: Rich Trott Reviewed-By: Daniel Bevenius Reviewed-By: Colin Ihrig Reviewed-By: Ruben Bridgewater Reviewed-By: Michael Dawson --- doc/api/readline.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'doc/api/readline.md') diff --git a/doc/api/readline.md b/doc/api/readline.md index 42d07da2d0..2e6c9cb07f 100644 --- a/doc/api/readline.md +++ b/doc/api/readline.md @@ -29,9 +29,9 @@ rl.question('What do you think of Node.js? ', (answer) => { }); ``` -*Note*: Once this code is invoked, the Node.js application will not -terminate until the `readline.Interface` is closed because the interface -waits for data to be received on the `input` stream. +Once this code is invoked, the Node.js application will not terminate until the +`readline.Interface` is closed because the interface waits for data to be +received on the `input` stream. ## Class: Interface