From 41937f76f0dd2b9239e23b25ff7ed5063af169bf Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Wed, 21 Oct 2020 05:02:25 -0700 Subject: [PATCH] doc: use kbd element in readline doc prose The kbd element has already been added in the keybindings table, but we missed it in one line in the prose. PR-URL: https://github.com/nodejs/node/pull/35737 Reviewed-By: Roman Reiss Reviewed-By: Franziska Hinkelmann --- doc/api/readline.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/readline.md b/doc/api/readline.md index 13b93a283167be..14b416b1e8045b 100644 --- a/doc/api/readline.md +++ b/doc/api/readline.md @@ -77,7 +77,7 @@ added: v0.1.98 The `'line'` event is emitted whenever the `input` stream receives an end-of-line input (`\n`, `\r`, or `\r\n`). This usually occurs when the user -presses the ``, or `` keys. +presses Enter or Return. The listener function is called with a string containing the single line of received input.