From 8e9e93da1d9c96a7acf63cc1c5317a42e56afbd8 Mon Sep 17 00:00:00 2001 From: Jyguy Date: Wed, 29 Jan 2020 12:54:10 -0500 Subject: [PATCH] docs(Guild): fetchBan returns a promise (#3752) --- src/structures/Guild.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structures/Guild.js b/src/structures/Guild.js index 5827ff49b..04d091b0c 100644 --- a/src/structures/Guild.js +++ b/src/structures/Guild.js @@ -557,7 +557,7 @@ class Guild extends Base { /** * Fetches information on a banned user from this guild. * @param {UserResolvable} user The User to fetch the ban info of - * @returns {BanInfo} + * @returns {Promise} */ fetchBan(user) { const id = this.client.users.resolveID(user);