@@ -65,7 +65,7 @@ public class ApplicationCreateCommand extends SlashCommandAdapter {
65
65
private final ApplicationFormConfig config ;
66
66
67
67
/**
68
- * Constructs a new {@code ApplicationCreateCommand} with the specified configuration.
68
+ * Constructs a new {@link ApplicationCreateCommand} with the specified configuration.
69
69
* <p>
70
70
* This command is designed to generate an application form for members to apply for roles.
71
71
*
@@ -111,12 +111,12 @@ public void onButtonClick(ButtonInteractionEvent event, List<String> args) {
111
111
/**
112
112
* Maps a user and an {@link ApplyRoleConfig} option to a SelectOption object.
113
113
* <p>
114
- * This method is used to create a SelectOption object that represents a role configuration
115
- * option for a user, including a unique component ID generated based on the user's ID and the
116
- * option's name, a description, and an emoji.
114
+ * This method is used to create a {@link SelectOption} object that represents a role
115
+ * configuration option for a user, including a unique component ID generated based on the
116
+ * user's ID and the option's name, a description, and an emoji.
117
117
*
118
118
* @param user the user for whom the role configuration option is being mapped
119
- * @param option the {@link ApplyRoleConfig} option to be mapped to a SelectOption
119
+ * @param option the {@link ApplyRoleConfig} option to be mapped to a {@link SelectOption}
120
120
* @return a {@link SelectOption} object with the specified details
121
121
*/
122
122
private SelectOption mapToSelectOption (User user , ApplyRoleConfig option ) {
@@ -194,7 +194,7 @@ public void onModalSubmitted(ModalInteractionEvent event, List<String> args) {
194
194
* Retrieves the application channel from the given {@link Guild}.
195
195
*
196
196
* @param guild the guild from which to retrieve the application channel
197
- * @return an {@link Optional} containing the {@code TextChannel} representing the application
197
+ * @return an {@link Optional} containing the {@link TextChannel} representing the application
198
198
* channel, or an empty {@link Optional} if no such channel is found
199
199
*/
200
200
private Optional <TextChannel > getApplicationChannel (Guild guild ) {
0 commit comments