docs: remove trailing commas

This commit is contained in:
Lewdcario
2018-02-27 17:43:51 -06:00
parent 2b24b10246
commit b79722a77b
5 changed files with 17 additions and 17 deletions

View File

@@ -507,7 +507,7 @@ class Guild {
* @param {string|number} [options.type] Only show entries involving this action type
* @returns {Promise<GuildAuditLogs>}
* @example
* // Output an audit log entry
* // Output audit log entries
* guild.fetchAuditLogs()
* .then(audit => console.log(audit.entries.first()))
* .catch(console.error);
@@ -603,7 +603,7 @@ class Guild {
* @example
* guild.search({
* content: 'discord.js',
* before: '2016-11-17',
* before: '2016-11-17'
* })
* .then(res => {
* const hit = res.messages[0].find(m => m.hit).content;