From f1afa9c3a8ce7e0dccf93a30a706edcf8f7c04e8 Mon Sep 17 00:00:00 2001 From: CodeGoat Date: Fri, 31 May 2024 19:35:15 +0100 Subject: [PATCH] feat(builders): fix text input docs Fixes incorrect references to select menu options in text input docs. --- packages/builders/src/components/textInput/TextInput.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/builders/src/components/textInput/TextInput.ts b/packages/builders/src/components/textInput/TextInput.ts index dcfa0560c01e..c8bb1f838746 100644 --- a/packages/builders/src/components/textInput/TextInput.ts +++ b/packages/builders/src/components/textInput/TextInput.ts @@ -26,16 +26,16 @@ export class TextInputBuilder * * @param data - The API data to create this text input with * @example - * Creating a select menu option from an API data object: + * Creating a text input from an API data object: * ```ts * const textInput = new TextInputBuilder({ - * custom_id: 'a cool select menu', + * custom_id: 'a cool text input', * label: 'Type something', * style: TextInputStyle.Short, * }); * ``` * @example - * Creating a select menu option using setters and API data: + * Creating a text input using setters and API data: * ```ts * const textInput = new TextInputBuilder({ * label: 'Type something else',