docs: trailing commas

This commit is contained in:
Lewdcario
2018-02-27 11:13:09 -06:00
committed by Isabella
parent af3517594f
commit 2b24b10246
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);