mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 00:23:30 +01:00
docs: Consistent application name usage (#5853)
This commit is contained in:
@@ -17,13 +17,13 @@ class IntegrationApplication extends Application {
|
||||
this.bot = data.bot ? this.client.users.add(data.bot) : this.bot ?? null;
|
||||
|
||||
/**
|
||||
* The url of the app's terms of service
|
||||
* The url of the application's terms of service
|
||||
* @type {?string}
|
||||
*/
|
||||
this.termsOfServiceURL = data.terms_of_service_url ?? this.termsOfServiceURL ?? null;
|
||||
|
||||
/**
|
||||
* The url of the app's privacy policy
|
||||
* The url of the application's privacy policy
|
||||
* @type {?string}
|
||||
*/
|
||||
this.privacyPolicyURL = data.privacy_policy_url ?? this.privacyPolicyURL ?? null;
|
||||
@@ -35,7 +35,7 @@ class IntegrationApplication extends Application {
|
||||
this.rpcOrigins = data.rpc_origins ?? this.rpcOrigins ?? [];
|
||||
|
||||
/**
|
||||
* The application summary
|
||||
* The application's summary
|
||||
* @type {?string}
|
||||
*/
|
||||
this.summary = data.summary ?? this.summary ?? null;
|
||||
|
||||
Reference in New Issue
Block a user