From 8a3808dc378219d39b0bf9693f0e640d390e51fb Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Mon, 12 Oct 2020 06:43:40 -0700 Subject: [PATCH] doc: use kbd element in tty doc PR-URL: https://github.com/nodejs/node/pull/35613 Reviewed-By: Luigi Pinca Reviewed-By: James M Snell --- doc/api/tty.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/tty.md b/doc/api/tty.md index a757b5b37030bd..2738d410f3fb3a 100644 --- a/doc/api/tty.md +++ b/doc/api/tty.md @@ -74,7 +74,7 @@ Allows configuration of `tty.ReadStream` so that it operates as a raw device. When in raw mode, input is always available character-by-character, not including modifiers. Additionally, all special processing of characters by the terminal is disabled, including echoing input characters. -`CTRL`+`C` will no longer cause a `SIGINT` when in this mode. +Ctrl+C will no longer cause a `SIGINT` when in this mode. ## Class: `tty.WriteStream`