Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix EntitySelectMenu Doc #2772

Merged
merged 1 commit into from
Nov 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ public static DefaultValue role(@Nonnull String id)
* Creates a default value of type {@link SelectTarget#USER} with the provided id.
*
* @param id
* The role id
* The user id
*
* @return The default value
*/
Expand All @@ -362,7 +362,7 @@ public static DefaultValue user(long id)
* Creates a default value of type {@link SelectTarget#USER} with the provided id.
*
* @param id
* The role id
* The user id
*
* @throws IllegalArgumentException
* If the provided id is not a valid snowflake
Expand All @@ -379,7 +379,7 @@ public static DefaultValue user(@Nonnull String id)
* Creates a default value of type {@link SelectTarget#CHANNEL} with the provided id.
*
* @param id
* The role id
* The channel id
*
* @return The default value
*/
Expand All @@ -393,7 +393,7 @@ public static DefaultValue channel(long id)
* Creates a default value of type {@link SelectTarget#CHANNEL} with the provided id.
*
* @param id
* The role id
* The channel id
*
* @throws IllegalArgumentException
* If the provided id is not a valid snowflake
Expand Down