From 29a50bb476e8e84896dbaec96c6009589afaafbf Mon Sep 17 00:00:00 2001 From: CodeGoat Date: Thu, 30 May 2024 23:41:43 +0100 Subject: [PATCH] docs(MappedComponentTypes): fix "inpiut" typo (#10306) * Fix typo in components Fixes a typo in components. * docs: an -> a --------- Co-authored-by: Jiralite <33201955+Jiralite@users.noreply.github.com> --- packages/builders/src/components/Components.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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; }