diff --git a/src/main/java/net/dv8tion/jda/api/audit/AuditLogKey.java b/src/main/java/net/dv8tion/jda/api/audit/AuditLogKey.java index d279ca9a87..46a860480a 100644 --- a/src/main/java/net/dv8tion/jda/api/audit/AuditLogKey.java +++ b/src/main/java/net/dv8tion/jda/api/audit/AuditLogKey.java @@ -426,19 +426,19 @@ public enum AuditLogKey /** * Roles added to {@link net.dv8tion.jda.api.entities.Member#getRoles() Member.getRoles()} with this action - *
Containing a list of {@link net.dv8tion.jda.api.entities.Role Role} IDs + *
Containing a list of role objects (maps) with entries for {@code id} and {@code name} *
Use with {@link net.dv8tion.jda.api.entities.Guild#getRoleById(String) Guild.getRoleById(String)} * - *

Expected type: List{@literal } + *

Expected type: List{@literal >} */ MEMBER_ROLES_ADD("$add"), /** * Roles removed from {@link net.dv8tion.jda.api.entities.Member#getRoles() Member.getRoles()} with this action - *
Containing a list of {@link net.dv8tion.jda.api.entities.Role Role} IDs + *
Containing a list of role objects (maps) with entries for {@code id} and {@code name} *
Use with {@link net.dv8tion.jda.api.entities.Guild#getRoleById(String) Guild.getRoleById(String)} * - *

Expected type: List{@literal } + *

Expected type: List{@literal >} */ MEMBER_ROLES_REMOVE("$remove"),