From 92c812518b7c03fcb2f56c0f8a543db28dd30e93 Mon Sep 17 00:00:00 2001 From: Travis CI Date: Thu, 29 Dec 2016 16:03:43 +0000 Subject: [PATCH] Webpack build: 3e3de51545a0047b6bcb05bd923bd35029aff602 --- discord.indev.js | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/discord.indev.js b/discord.indev.js index dae5298a..cfec028a 100644 --- a/discord.indev.js +++ b/discord.indev.js @@ -2563,8 +2563,8 @@ class TextBasedChannel { /** * Send a message to this channel - * @param {StringResolvable} [content] The content to send - * @param {MessageOptions} [options={}] The options to provide + * @param {StringResolvable} [content] Text for the message + * @param {MessageOptions} [options={}] Options for the message * @returns {Promise} * @example * // send a message @@ -2602,8 +2602,8 @@ class TextBasedChannel { /** * Send a message to this channel - * @param {StringResolvable} content The content to send - * @param {MessageOptions} [options={}] The options to provide + * @param {StringResolvable} content Text for the message + * @param {MessageOptions} [options={}] Options for the message * @returns {Promise} * @example * // send a message @@ -2617,9 +2617,9 @@ class TextBasedChannel { /** * Send an embed to this channel - * @param {RichEmbed|Object} embed The embed to send - * @param {string} [content] Content to send - * @param {MessageOptions} [options] The options to provide + * @param {RichEmbed|Object} embed Embed for the message + * @param {string} [content] Text for the message + * @param {MessageOptions} [options] Options for the message * @returns {Promise} */ sendEmbed(embed, content, options) { @@ -2634,10 +2634,10 @@ class TextBasedChannel { /** * Send a file to this channel - * @param {BufferResolvable} attachment The file to send - * @param {string} [name='file.jpg'] The name and extension of the file - * @param {StringResolvable} [content] Text message to send with the attachment - * @param {MessageOptions} [options] The options to provide + * @param {BufferResolvable} attachment File to send + * @param {string} [name='file.jpg'] Name and extension of the file + * @param {StringResolvable} [content] Text for the message + * @param {MessageOptions} [options] Options for the message * @returns {Promise} */ sendFile(attachment, name, content, options = {}) { @@ -2648,7 +2648,7 @@ class TextBasedChannel { * Send a code block to this channel * @param {string} lang Language for the code block * @param {StringResolvable} content Content of the code block - * @param {MessageOptions} [options] The options to provide + * @param {MessageOptions} [options] Options for the message * @returns {Promise} */ sendCode(lang, content, options = {}) { @@ -2658,7 +2658,7 @@ class TextBasedChannel { /** * Gets a single message from this channel, regardless of it being cached or not. * This is only available when using a bot account. - * @param {string} messageID The ID of the message to get + * @param {string} messageID ID of the message to get * @returns {Promise} * @example * // get message @@ -2686,7 +2686,7 @@ class TextBasedChannel { /** * Gets the past messages sent in this channel. Resolves with a collection mapping message ID's to Message objects. - * @param {ChannelLogsQueryOptions} [options={}] The query parameters to pass in + * @param {ChannelLogsQueryOptions} [options={}] Query parameters to pass in * @returns {Promise>} * @example * // get messages