Skip to content

Commit

Permalink
Fix docstrings for premium properties (#325)
Browse files Browse the repository at this point in the history
  • Loading branch information
object-Object authored Jan 22, 2022
1 parent 24071a3 commit e766da3
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions libs/containers/Guild.lua
Original file line number Diff line number Diff line change
Expand Up @@ -820,14 +820,12 @@ function get.explicitContentSetting(self)
return self._explicit_content_filter
end

--[=[@p premiumTier number The guild's premier tier affected by nitro server
boosts. See the `premiumTier` enumeration for a human-readable representation]=]
--[=[@p premiumTier number The guild's premium tier (server boost level). See the `premiumTier` enumeration for a human-readable representation.]=]
function get.premiumTier(self)
return self._premium_tier
end

--[=[@p premiumSubscriptionCount number The number of users that have upgraded
the guild with nitro server boosting.]=]
--[=[@p premiumSubscriptionCount number The number of boosts the guild currently has. This may be greater than the number of users who are boosting the guild.]=]
function get.premiumSubscriptionCount(self)
return self._premium_subscription_count
end
Expand Down

0 comments on commit e766da3

Please sign in to comment.