From 23a6424261d0d61db2742838f1b5803e3ee00625 Mon Sep 17 00:00:00 2001 From: Jiralite <33201955+Jiralite@users.noreply.github.com> Date: Thu, 31 Aug 2023 19:21:52 +0100 Subject: [PATCH] docs(ApplicationsAPI): Fix `getCurrent()` options description (#9816) docs(ApplicationsAPI): fix `getCurrent()` options description --- packages/core/src/api/applications.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/api/applications.ts b/packages/core/src/api/applications.ts index 1bf8622ae..4c288c74e 100644 --- a/packages/core/src/api/applications.ts +++ b/packages/core/src/api/applications.ts @@ -10,7 +10,7 @@ export class ApplicationsAPI { * Fetches the application associated with the requesting bot user. * * @see {@link https://discord.com/developers/docs/resources/application#get-current-application} - * @param options - The options for editing the application + * @param options - The options for fetching the application */ public async getCurrent({ signal }: Pick = {}) { return this.rest.get(Routes.currentApplication(), { signal }) as Promise;