From 44603684179fe143434f47163fc7048703ce7ff1 Mon Sep 17 00:00:00 2001 From: Acid147 Date: Thu, 6 Dec 2018 21:11:20 +0100 Subject: [PATCH] chore: command names use title case (#133) --- package.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index b3f93a8..430ad16 100644 --- a/package.json +++ b/package.json @@ -30,12 +30,12 @@ "commands": [ { "command": "discord.enable", - "title": "Enable Discord Presence in the current workspace", + "title": "Enable Discord Presence in the Current Workspace", "category": "Discord Presence" }, { "command": "discord.disable", - "title": "Disable Discord Presence in the current workspace", + "title": "Disable Discord Presence in the Current Workspace", "category": "Discord Presence" }, { @@ -45,22 +45,22 @@ }, { "command": "discord.allowSpectate", - "title": "Allow spectating", + "title": "Allow Spectating", "category": "Discord Presence" }, { "command": "discord.disableSpectate", - "title": "Disable spectating", + "title": "Disable Spectating", "category": "Discord Presence" }, { "command": "discord.allowJoinRequests", - "title": "Allow join requests", + "title": "Allow Join Requests", "category": "Discord Presence" }, { "command": "discord.disableJoinRequests", - "title": "Disable join requests", + "title": "Disable Join Requests", "category": "Discord Presence" } ],