Skip to content

Commit d566651

Browse files
committed
fix: run discovery options descriptions
1 parent 5a1d8cf commit d566651

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/Commands/RunDiscovery.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export class RunDiscovery implements CommandModule {
4949
normalize: true,
5050
requiresArg: true,
5151
describe:
52-
"A collection your app's http/websockets logs into HAR file. " +
52+
"A collection of your app's http/websockets logs into HAR file. " +
5353
'Usually you can use browser dev tools or our browser web extension'
5454
})
5555
.option('crawler', {
@@ -86,13 +86,15 @@ export class RunDiscovery implements CommandModule {
8686
.option('concurrency', {
8787
number: true,
8888
default: 10,
89-
describe: 'Number of requests to send concurrently.',
89+
describe:
90+
'Number of maximum concurrent requests allowed to be sent to the target, can range between 1 to 50 (default: 10).',
9091
requiresArg: true
9192
})
9293
.option('interactions-depth', {
9394
number: true,
9495
default: 3,
95-
describe: 'Maximum depth of interactions to crawl. Range is 1 to 5.',
96+
describe:
97+
'Number of maximum interactions with nested objects, can range between 1 to 5 (default: 3).',
9698
requiresArg: true
9799
})
98100
.middleware((args: Arguments) =>

0 commit comments

Comments
 (0)