diff --git a/packages/discord.js/src/structures/GuildTemplate.js b/packages/discord.js/src/structures/GuildTemplate.js index eba00b75b2b5..7f4cad43da58 100644 --- a/packages/discord.js/src/structures/GuildTemplate.js +++ b/packages/discord.js/src/structures/GuildTemplate.js @@ -12,7 +12,7 @@ const Events = require('../util/Events'); */ class GuildTemplate extends Base { /** - * A regular expression that globally matches guild template links. + * A regular expression that matches guild template links. * The `code` group property is present on the `exec()` result of this expression. * @type {RegExp} * @memberof GuildTemplate diff --git a/packages/discord.js/src/structures/Invite.js b/packages/discord.js/src/structures/Invite.js index 68699aba7207..92e4b5d7e236 100644 --- a/packages/discord.js/src/structures/Invite.js +++ b/packages/discord.js/src/structures/Invite.js @@ -13,7 +13,7 @@ const { Error, ErrorCodes } = require('../errors'); */ class Invite extends Base { /** - * A regular expression that globally matches Discord invite links. + * A regular expression that matches Discord invite links. * The `code` group property is present on the `exec()` result of this expression. * @type {RegExp} * @memberof Invite