From 43a7870b2337ebdc362640a799fe5e81cfbaf739 Mon Sep 17 00:00:00 2001 From: Almeida Date: Mon, 2 May 2022 08:38:11 +0100 Subject: [PATCH] docs(shardingmanager): fix type of `execArgv` option (v13) (#7863) --- src/sharding/ShardingManager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sharding/ShardingManager.js b/src/sharding/ShardingManager.js index 5ddf5ab0b683..db8581c725b8 100644 --- a/src/sharding/ShardingManager.js +++ b/src/sharding/ShardingManager.js @@ -36,7 +36,7 @@ class ShardingManager extends EventEmitter { * @property {boolean} [respawn=true] Whether shards should automatically respawn upon exiting * @property {string[]} [shardArgs=[]] Arguments to pass to the shard script when spawning * (only available when mode is set to 'process') - * @property {string} [execArgv=[]] Arguments to pass to the shard script executable when spawning + * @property {string[]} [execArgv=[]] Arguments to pass to the shard script executable when spawning * (only available when mode is set to 'process') * @property {string} [token] Token to use for automatic shard count and passing to shards */