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

@@ -351,7 +351,7 @@ class GuildMember {
* // Set a member's nickname and clear their roles
* message.member.edit({
* nick: 'Cool Name',
* roles: [],
* roles: []
* })
* .then(console.log)
* .catch(console.error);