From 377ecd73ea1c9c1f5dba47768d97a105075d6bac Mon Sep 17 00:00:00 2001 From: Crawl Date: Tue, 20 Nov 2018 16:42:27 +0100 Subject: [PATCH] docs(GuildChannel): fix doc string for clone method --- src/structures/GuildChannel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structures/GuildChannel.js b/src/structures/GuildChannel.js index d75678b7d..daf20a52d 100644 --- a/src/structures/GuildChannel.js +++ b/src/structures/GuildChannel.js @@ -464,7 +464,6 @@ class GuildChannel extends Channel { * @param {string} [options.reason] Reason for cloning this channel * @returns {Promise} */ - /* eslint-enable max-len */ clone(options = {}) { Util.mergeDefault({ name: this.name, @@ -480,6 +479,7 @@ class GuildChannel extends Channel { }, options); return this.guild.channels.create(options.name, options); } + /* eslint-enable max-len */ /** * Checks if this channel has the same type, topic, position, name, overwrites and ID as another channel.