fix incorrect doc
As it seems, this stated min_values must be between 1-25 even tho docs state it must be between 0-25. This changes that doc so that it might prevent confusion in the future
This commit is contained in:
parent
983cbb3161
commit
f46d3bfa28
@ -72,7 +72,7 @@ class Select(Item[V]):
|
|||||||
The placeholder text that is shown if nothing is selected, if any.
|
The placeholder text that is shown if nothing is selected, if any.
|
||||||
min_values: :class:`int`
|
min_values: :class:`int`
|
||||||
The minimum number of items that must be chosen for this select menu.
|
The minimum number of items that must be chosen for this select menu.
|
||||||
Defaults to 1 and must be between 1 and 25.
|
Defaults to 1 and must be between 0 and 25.
|
||||||
max_values: :class:`int`
|
max_values: :class:`int`
|
||||||
The maximum number of items that must be chosen for this select menu.
|
The maximum number of items that must be chosen for this select menu.
|
||||||
Defaults to 1 and must be between 1 and 25.
|
Defaults to 1 and must be between 1 and 25.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user