From 952a7123f3f8fec191730f4dd0e8af72d7c7a157 Mon Sep 17 00:00:00 2001 From: Schuyler Cebulskie Date: Mon, 9 Apr 2018 14:35:49 -0400 Subject: [PATCH] Add missing word in Shard#respawn docblock --- src/sharding/Shard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sharding/Shard.js b/src/sharding/Shard.js index 96ab796dc..87009e903 100644 --- a/src/sharding/Shard.js +++ b/src/sharding/Shard.js @@ -115,7 +115,7 @@ class Shard extends EventEmitter { /** * Kills and restarts the shard's process. * @param {number} [delay=500] How long to wait between killing the process and restarting it (in milliseconds) - * @param {boolean} [waitForReady=true] Whether to wait the {@link Client} has become ready before resolving + * @param {boolean} [waitForReady=true] Whether to wait until the {@link Client} has become ready before resolving * @returns {Promise} */ async respawn(delay = 500, waitForReady = true) {