From 1702cea929b53134a2a82ddcbd3f6c0604f37df1 Mon Sep 17 00:00:00 2001 From: Rodolfo Carvalho Date: Tue, 4 May 2021 13:33:07 +0200 Subject: [PATCH] doc: remove extraneous dash from flag prefix When rendered by `man node`, all flags have a dash prepended to them. Prior to this change, the man page would incorrectly read `---unhandled-rejections=mode` The three dashes is invalid syntax and rejected by the `node` command. --- doc/node.1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/node.1 b/doc/node.1 index d2d573151f879b..95fd700bc03310 100644 --- a/doc/node.1 +++ b/doc/node.1 @@ -454,7 +454,7 @@ Print stack traces for process warnings (including deprecations). .It Fl -track-heap-objects Track heap object allocations for heap snapshots. . -.It Fl --unhandled-rejections=mode +.It Fl -unhandled-rejections=mode Define the behavior for unhandled rejections. Can be one of `strict` (raise an error), `warn` (enforce warnings) or `none` (silence warnings). . .It Fl -use-bundled-ca , Fl -use-openssl-ca