fix docs because gawdl3y forgot >:( (#724)

This commit is contained in:
Gus Caplan
2016-09-22 04:25:08 -05:00
committed by abal
parent 8af96810dd
commit e86b93b34f
2 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@@ -484,12 +484,12 @@ class Guild {
* @returns {Promise<number>} The number of members that were/will be kicked
* @example
* // see how many members will be pruned
* guild.prune(12, true)
* guild.pruneMembers(12, true)
* .then(pruned => console.log(`This will prune ${pruned} people!`);
* .catch(console.error);
* @example
* // actually prune the members
* guild.prune(12)
* guild.pruneMembers(12)
* .then(pruned => console.log(`I just pruned ${pruned} people!`);
* .catch(console.error);
*/