diff --git a/src/sharding/ShardingManager.js b/src/sharding/ShardingManager.js index 0b9fdd9c1..8fd7c6f42 100644 --- a/src/sharding/ShardingManager.js +++ b/src/sharding/ShardingManager.js @@ -20,9 +20,7 @@ const Util = require('../util/Util'); class ShardingManager extends EventEmitter { /** * The mode to spawn shards with for a {@link ShardingManager}: either "process" to use child processes, or - * "worker" to use workers. The "worker" mode relies on the experimental - * [Worker threads](https://nodejs.org/api/worker_threads.html) functionality that is present in Node v10.5.0 or - * newer. Node must be started with the `--experimental-worker` flag to expose it. + * "worker" to use [Worker threads][Worker threads](https://nodejs.org/api/worker_threads.html). * @typedef {Object} ShardingManagerMode */