Browse Source
Fix incorrect docs in select menu min_values
pull/8388/head
chawkk6404
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
3 additions and
3 deletions
-
discord/components.py
-
discord/ui/select.py
|
|
@ -240,7 +240,7 @@ class SelectMenu(Component): |
|
|
|
The placeholder text that is shown if nothing is selected, if any. |
|
|
|
min_values: :class:`int` |
|
|
|
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` |
|
|
|
The maximum number of items that must be chosen for this select menu. |
|
|
|
Defaults to 1 and must be between 1 and 25. |
|
|
|
|
|
@ -75,7 +75,7 @@ class Select(Item[V]): |
|
|
|
The placeholder text that is shown if nothing is selected, if any. |
|
|
|
min_values: :class:`int` |
|
|
|
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` |
|
|
|
The maximum number of items that must be chosen for this select menu. |
|
|
|
Defaults to 1 and must be between 1 and 25. |
|
|
@ -335,7 +335,7 @@ def select( |
|
|
|
ordering. The row number must be between 0 and 4 (i.e. zero indexed). |
|
|
|
min_values: :class:`int` |
|
|
|
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` |
|
|
|
The maximum number of items that must be chosen for this select menu. |
|
|
|
Defaults to 1 and must be between 1 and 25. |
|
|
|