From 45a9d4ac598a757788c7a2688c94417e2adc9927 Mon Sep 17 00:00:00 2001 From: Aviv Keller Date: Wed, 18 Sep 2024 05:18:16 -0400 Subject: [PATCH] cli: fix spacing for port range error PR-URL: https://github.com/nodejs/node/pull/54495 Reviewed-By: Yagiz Nizipli Reviewed-By: Luigi Pinca --- src/node_options.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node_options.cc b/src/node_options.cc index dba59c5560c228..e325b082dec6ae 100644 --- a/src/node_options.cc +++ b/src/node_options.cc @@ -1124,7 +1124,7 @@ inline uint16_t ParseAndValidatePort(const std::string_view port, if (r.ec == std::errc::result_out_of_range || (result != 0 && result < 1024)) { - errors->push_back(" must be 0 or in range 1024 to 65535."); + errors->push_back("must be 0 or in range 1024 to 65535."); } return result;