diff --git a/packages/builders/src/components/Components.ts b/packages/builders/src/components/Components.ts index 74efe8782..18b0dff6d 100644 --- a/packages/builders/src/components/Components.ts +++ b/packages/builders/src/components/Components.ts @@ -23,31 +23,31 @@ export interface MappedComponentTypes { */ [ComponentType.ActionRow]: ActionRowBuilder; /** - * The button component type is associated with an {@link ButtonBuilder}. + * The button component type is associated with a {@link ButtonBuilder}. */ [ComponentType.Button]: ButtonBuilder; /** - * The string select component type is associated with an {@link StringSelectMenuBuilder}. + * The string select component type is associated with a {@link StringSelectMenuBuilder}. */ [ComponentType.StringSelect]: StringSelectMenuBuilder; /** - * The text inpiut component type is associated with an {@link TextInputBuilder}. + * The text input component type is associated with a {@link TextInputBuilder}. */ [ComponentType.TextInput]: TextInputBuilder; /** - * The user select component type is associated with an {@link UserSelectMenuBuilder}. + * The user select component type is associated with a {@link UserSelectMenuBuilder}. */ [ComponentType.UserSelect]: UserSelectMenuBuilder; /** - * The role select component type is associated with an {@link RoleSelectMenuBuilder}. + * The role select component type is associated with a {@link RoleSelectMenuBuilder}. */ [ComponentType.RoleSelect]: RoleSelectMenuBuilder; /** - * The mentionable select component type is associated with an {@link MentionableSelectMenuBuilder}. + * The mentionable select component type is associated with a {@link MentionableSelectMenuBuilder}. */ [ComponentType.MentionableSelect]: MentionableSelectMenuBuilder; /** - * The channel select component type is associated with an {@link ChannelSelectMenuBuilder}. + * The channel select component type is associated with a {@link ChannelSelectMenuBuilder}. */ [ComponentType.ChannelSelect]: ChannelSelectMenuBuilder; }