chore: command names use title case (#133)

This commit is contained in:
Acid147 2018-12-06 21:11:20 +01:00 committed by Crawl
parent d381629b43
commit 4460368417

View file

@ -30,12 +30,12 @@
"commands": [ "commands": [
{ {
"command": "discord.enable", "command": "discord.enable",
"title": "Enable Discord Presence in the current workspace", "title": "Enable Discord Presence in the Current Workspace",
"category": "Discord Presence" "category": "Discord Presence"
}, },
{ {
"command": "discord.disable", "command": "discord.disable",
"title": "Disable Discord Presence in the current workspace", "title": "Disable Discord Presence in the Current Workspace",
"category": "Discord Presence" "category": "Discord Presence"
}, },
{ {
@ -45,22 +45,22 @@
}, },
{ {
"command": "discord.allowSpectate", "command": "discord.allowSpectate",
"title": "Allow spectating", "title": "Allow Spectating",
"category": "Discord Presence" "category": "Discord Presence"
}, },
{ {
"command": "discord.disableSpectate", "command": "discord.disableSpectate",
"title": "Disable spectating", "title": "Disable Spectating",
"category": "Discord Presence" "category": "Discord Presence"
}, },
{ {
"command": "discord.allowJoinRequests", "command": "discord.allowJoinRequests",
"title": "Allow join requests", "title": "Allow Join Requests",
"category": "Discord Presence" "category": "Discord Presence"
}, },
{ {
"command": "discord.disableJoinRequests", "command": "discord.disableJoinRequests",
"title": "Disable join requests", "title": "Disable Join Requests",
"category": "Discord Presence" "category": "Discord Presence"
} }
], ],