docs: inconsistencies

This commit is contained in:
Lewdcario
2018-04-18 20:21:17 -05:00
parent 2dd7fd2739
commit ec9211c3ce
4 changed files with 13 additions and 6 deletions

View File

@@ -80,7 +80,9 @@ class GuildMemberStore extends DataStore {
* guild.members.fetch('66564597481480192')
* .then(console.log)
* .catch(console.error);
* guild.members.fetch({ user, cache: false }) // Fetch and don't cache
* @example
* // Fetch a single member without caching
* guild.members.fetch({ user, cache: false })
* .then(console.log)
* .catch(console.error);
* @example