@@ -164,7 +164,7 @@ class Guild extends AnonymousGuild {
164
164
165
165
if ( 'large' in data ) {
166
166
/**
167
- * Whether the guild is "large" (has more than {@link WebsocketOptions large_threshold} members, 50 by default)
167
+ * Whether the guild is "large" (has more than {@link WebSocketOptions large_threshold} members, 50 by default)
168
168
* @type {boolean }
169
169
*/
170
170
this . large = Boolean ( data . large ) ;
@@ -291,7 +291,8 @@ class Guild extends AnonymousGuild {
291
291
if ( 'max_presences' in data ) {
292
292
/**
293
293
* The maximum amount of presences the guild can have (this is `null` for all but the largest of guilds)
294
- * <info>You will need to fetch the guild using {@link Guild#fetch} if you want to receive this parameter</info>
294
+ * <info>You will need to fetch the guild using {@link BaseGuild#fetch} if you want to receive
295
+ * this parameter</info>
295
296
* @type {?number }
296
297
*/
297
298
this . maximumPresences = data . max_presences ;
@@ -322,7 +323,8 @@ class Guild extends AnonymousGuild {
322
323
if ( 'approximate_member_count' in data ) {
323
324
/**
324
325
* The approximate amount of members the guild has
325
- * <info>You will need to fetch the guild using {@link Guild#fetch} if you want to receive this parameter</info>
326
+ * <info>You will need to fetch the guild using {@link BaseGuild#fetch} if you want to receive
327
+ * this parameter</info>
326
328
* @type {?number }
327
329
*/
328
330
this . approximateMemberCount = data . approximate_member_count ;
@@ -333,7 +335,8 @@ class Guild extends AnonymousGuild {
333
335
if ( 'approximate_presence_count' in data ) {
334
336
/**
335
337
* The approximate amount of presences the guild has
336
- * <info>You will need to fetch the guild using {@link Guild#fetch} if you want to receive this parameter</info>
338
+ * <info>You will need to fetch the guild using {@link BaseGuild#fetch} if you want to receive
339
+ * this parameter</info>
337
340
* @type {?number }
338
341
*/
339
342
this . approximatePresenceCount = data . approximate_presence_count ;
0 commit comments