docs: clarify wording for maximum values (#11231)

* docs(FileUpload): clarify wording

* chore: missed instances

---------

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
This commit is contained in:
Naiyar
2025-11-01 20:33:34 +06:00
committed by GitHub
parent f26a5ed869
commit 06a75e80bc
3 changed files with 4 additions and 4 deletions

View File

@@ -72,7 +72,7 @@ export class FileUploadBuilder extends ComponentBuilder<APIFileUploadComponent>
/**
* Sets the maximum number of file uploads required.
*
* @param maxValues - The maximum values that must be uploaded
* @param maxValues - The maximum values that can be uploaded
*/
public setMaxValues(maxValues: number) {
this.data.max_values = maxValues;

View File

@@ -49,7 +49,7 @@ export abstract class BaseSelectMenuBuilder<Data extends APISelectMenuComponent>
/**
* Sets the maximum values that must be selected in the select menu.
*
* @param maxValues - The maximum values that must be selected
* @param maxValues - The maximum values that can be selected
*/
public setMaxValues(maxValues: number) {
this.data.max_values = maxValues;