docs(ShardingManager): fix typo in JSDoc (#4158)

Fix typo introduced in PR #4157 in the link to Node docs
This commit is contained in:
Alexander Kashev 2020-05-05 22:45:30 +02:00 committed by GitHub
parent b385aedf36
commit 766b91d306
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,7 +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 [Worker threads][Worker threads](https://nodejs.org/api/worker_threads.html).
* "worker" to use [Worker threads](https://nodejs.org/api/worker_threads.html).
* @typedef {Object} ShardingManagerMode
*/