From 3b7b282b697f92ab74f9d9bb2a289d3355f3501b Mon Sep 17 00:00:00 2001
From: izexi <43889168+izexi@users.noreply.github.com>
Date: Thu, 17 Jan 2019 08:58:04 +0000
Subject: [PATCH] docs(Client): add missing example tag and closing parenthesis
(#3024)
---
src/client/Client.js | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/client/Client.js b/src/client/Client.js
index f46a00f95..c0b56f66d 100644
--- a/src/client/Client.js
+++ b/src/client/Client.js
@@ -395,8 +395,9 @@ class Client extends EventEmitter {
* Bots can only fetch their own profile.
* @param {Snowflake} [id='@me'] ID of application to fetch
* @returns {Promise}
+ * @example
* client.fetchApplication()
- * .then(application => console.log(`Obtained application with name: ${application.name}`)
+ * .then(application => console.log(`Obtained application with name: ${application.name}`))
* .catch(console.error);
*/
fetchApplication(id = '@me') {