Skip to content

Commit

Permalink
docs(ThreadMember): fix docblock async return type (discordjs#10058)
Browse files Browse the repository at this point in the history
  • Loading branch information
Renegade334 committed Dec 28, 2023
1 parent 0f1e02b commit 4824ac1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/discord.js/src/structures/ThreadMember.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ class ThreadMember extends Base {
/**
* Removes this member from the thread.
* @param {string} [reason] Reason for removing the member
* @returns {ThreadMember}
* @returns {Promise<ThreadMember>}
*/
async remove(reason) {
await this.thread.members.remove(this.id, reason);
Expand Down

0 comments on commit 4824ac1

Please sign in to comment.