fix: Change jsdoc comments in Modal (#165)

* fix: change jsdoc comments
This commit is contained in:
PabloRNC 2024-03-27 22:23:53 +01:00 committed by GitHub
parent c4f8a76a3b
commit 84f1ccf0ce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -93,7 +93,7 @@ export class Modal<T extends ModalBuilderComponents = TextInput> {
* Represents a text input component builder.
* @example
* const textInput = new TextInput().setLabel("Enter text");
* textInput.setStyle(TextInputStyle.FULL);
* textInput.setStyle(TextInputStyle.Paragraph);
* textInput.setPlaceholder("Type here");
* const json = textInput.toJSON();
*/