From 01b982a0e72285e4e9c35f7db90052d086b2715f Mon Sep 17 00:00:00 2001 From: therealrinku Date: Tue, 4 Mar 2025 20:31:50 +0545 Subject: [PATCH] fix: add missing example description for delay --- packages/bruno-cli/src/commands/run.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/bruno-cli/src/commands/run.js b/packages/bruno-cli/src/commands/run.js index bd9a2d0c5..afa72607c 100644 --- a/packages/bruno-cli/src/commands/run.js +++ b/packages/bruno-cli/src/commands/run.js @@ -392,7 +392,7 @@ const builder = async (yargs) => { 'Use a custom CA certificate exclusively when validating the peers of the requests in the specified folder.' ) .example('$0 run --client-cert-config client-cert-config.json', 'Run a request with Client certificate configurations') - .example('$0 run folder --delay 3000'); + .example('$0 run folder --delay 3000', 'Run a folder with given miliseconds delay between each requests.'); }; const handler = async function (argv) {