From 970975b5885d5106ef1e5895ec5232bf4fb7070f Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sat, 10 Oct 2020 05:30:20 -0700 Subject: [PATCH] doc: use kbd element in process doc PR-URL: https://github.com/nodejs/node/pull/35584 Reviewed-By: Antoine du Hamel Reviewed-By: Luigi Pinca Reviewed-By: Anna Henningsen Reviewed-By: Daijiro Wachi --- doc/api/process.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/doc/api/process.md b/doc/api/process.md index bd6662fe390fb7..179e1bd4d852db 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -509,11 +509,12 @@ process.on('SIGTERM', handle); installed its default behavior will be removed. * `'SIGTERM'` is not supported on Windows, it can be listened on. * `'SIGINT'` from the terminal is supported on all platforms, and can usually be - generated with `+C` (though this may be configurable). It is not - generated when [terminal raw mode][] is enabled and `+C` is used. -* `'SIGBREAK'` is delivered on Windows when `+` is pressed, on - non-Windows platforms it can be listened on, but there is no way to send or - generate it. + generated with Ctrl+C (though this may be configurable). + It is not generated when [terminal raw mode][] is enabled and + Ctrl+C is used. +* `'SIGBREAK'` is delivered on Windows when Ctrl+Break is + pressed. On non-Windows platforms, it can be listened on, but there is no way + to send or generate it. * `'SIGWINCH'` is delivered when the console has been resized. On Windows, this will only happen on write to the console when the cursor is being moved, or when a readable tty is used in raw mode.