From e67e6987106d3f63e71f5526c77032886c247da9 Mon Sep 17 00:00:00 2001 From: almostSouji Date: Sun, 18 Apr 2021 13:10:51 +0200 Subject: [PATCH] fix: correct hook docstring --- src/structures/IntegrationApplication.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structures/IntegrationApplication.js b/src/structures/IntegrationApplication.js index c3d4de890967..b820331bccde 100644 --- a/src/structures/IntegrationApplication.js +++ b/src/structures/IntegrationApplication.js @@ -41,7 +41,7 @@ class IntegrationApplication extends Application { this.summary = data.summary ?? this.summary ?? null; /** - * Whether the application has been associated with a webhook + * Whether the application can be default hooked by the client * @type {?boolean} */ this.hook = data.hook ?? this.hook ?? null;