From 232458c0e0911d638d53c8f34b239bb9e3a2f408 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Thu, 11 Mar 2021 01:13:18 -0500 Subject: [PATCH] fix profile usage terminology --- src/commands/profile.ts | 2 +- src/commands/profile_bio.ts | 2 +- src/commands/profile_github.ts | 2 +- src/commands/profile_gitlab.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/commands/profile.ts b/src/commands/profile.ts index 20978a4..d27e7fa 100644 --- a/src/commands/profile.ts +++ b/src/commands/profile.ts @@ -10,7 +10,7 @@ export default class Profile extends Command { super(client); this.name = 'profile'; this.description = 'Manages your profile on CR.'; - this.usage = 'profile \n*Provide no value in subcommand to clear data.*'; + this.usage = `${this.client.config.prefix}profile \n*Provide no value in subcommand to clear data.*`; this.permissions = 0; this.enabled = true; this.subcmds = [Profile_Bio, Profile_GitHub, Profile_Gitlab]; diff --git a/src/commands/profile_bio.ts b/src/commands/profile_bio.ts index f26cb76..85487c1 100644 --- a/src/commands/profile_bio.ts +++ b/src/commands/profile_bio.ts @@ -6,7 +6,7 @@ export default class Profile_Bio extends Command { super(client); this.name = 'bio'; this.description = 'Updates your bio on your profile.'; - this.usage = `${this.client.config.prefix}bio `; + this.usage = `${this.client.config.prefix}profile bio `; this.permissions = 0; this.enabled = true; } diff --git a/src/commands/profile_github.ts b/src/commands/profile_github.ts index 7989140..56ced5c 100644 --- a/src/commands/profile_github.ts +++ b/src/commands/profile_github.ts @@ -6,7 +6,7 @@ export default class Profile_GitHub extends Command { super(client); this.name = 'github'; this.description = 'Updates your GitHub information on your profile.'; - this.usage = `${this.client.config.prefix}github `; + this.usage = `${this.client.config.prefix}profile github `; this.permissions = 0; this.enabled = true; } diff --git a/src/commands/profile_gitlab.ts b/src/commands/profile_gitlab.ts index 7cb84eb..e3b29cf 100644 --- a/src/commands/profile_gitlab.ts +++ b/src/commands/profile_gitlab.ts @@ -6,7 +6,7 @@ export default class Profile_GitLab extends Command { super(client); this.name = 'gitlab'; this.description = 'Updates your GitLab information on your profile.'; - this.usage = `${this.client.config.prefix}gitlab `; + this.usage = `${this.client.config.prefix}profile gitlab `; this.permissions = 0; this.enabled = true; }