From 79a5af16d2dcb966a876f2400489acbd2604a2d0 Mon Sep 17 00:00:00 2001 From: Endel Dreyer Date: Wed, 19 Apr 2023 11:25:04 -0300 Subject: [PATCH] update "scale" command description --- lib/binaries/CLI.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/binaries/CLI.js b/lib/binaries/CLI.js index 36f8af6dc1..f383642300 100644 --- a/lib/binaries/CLI.js +++ b/lib/binaries/CLI.js @@ -381,10 +381,10 @@ commander.command('restart ') }); // -// Scale up/down a process in cluster mode +// Scale up/down a process // commander.command('scale ') - .description('scale up/down a process in cluster mode depending on total_number param') + .description('scale up/down a process to match the param') .action(function(app_name, number) { pm2.scale(app_name, number); });