about summary refs log tree commit diff
path: root/editors/code/src
diff options
context:
space:
mode:
authorVeetaha <gerzoh1@gmail.com>2020-02-02 21:38:49 +0200
committerVeetaha <gerzoh1@gmail.com>2020-02-02 21:38:49 +0200
commit4bf5f595604c2c3fa0ca981a843d04a8732dabf9 (patch)
treede94306fb8dab50dbebc4bd02c4b9027fd6e29b2 /editors/code/src
parent81847524702dd7cb1eeae25a53444b325295b129 (diff)
downloadrust-4bf5f595604c2c3fa0ca981a843d04a8732dabf9.tar.gz
rust-4bf5f595604c2c3fa0ca981a843d04a8732dabf9.zip
vscode: fix type
Diffstat (limited to 'editors/code/src')
-rw-r--r--editors/code/src/main.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/main.ts b/editors/code/src/main.ts
index de45f660bf0..6813c3c4ccb 100644
--- a/editors/code/src/main.ts
+++ b/editors/code/src/main.ts
@@ -11,7 +11,7 @@ let ctx!: Ctx;
 export async function activate(context: vscode.ExtensionContext) {
     ctx = new Ctx(context);
 
-    // Commands which invokes manually via command pallete, shortcut, etc.
+    // Commands which invokes manually via command palette, shortcut, etc.
     ctx.registerCommand('analyzerStatus', commands.analyzerStatus);
     ctx.registerCommand('collectGarbage', commands.collectGarbage);
     ctx.registerCommand('matchingBrace', commands.matchingBrace);