Fix ShardClientUtil.fetchClientValues example

This commit is contained in:
Schuyler Cebulskie
2016-09-27 17:25:17 -04:00
parent 49d905a7b1
commit 4fceae02d6
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@@ -48,7 +48,7 @@ class ShardClientUtil {
* @param {string} prop Name of the Client property to get, using periods for nesting
* @returns {Promise<Array>}
* @example
* manager.fetchClientValues('guilds.size').then(results => {
* client.shard.fetchClientValues('guilds.size').then(results => {
* console.log(`${results.reduce((prev, val) => prev + val, 0)} total guilds`);
* }).catch(console.error);
*/