Skip to content

Commit

Permalink
fix: Fix error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed Jun 26, 2020
1 parent ae07e7e commit afe7b39
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ Respects formatting on save:

## Release Notes

### 0.1.2

Fix error text.

### 0.1.1

Auto-dismiss syntax error notifications.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Formats code in VSCode using dprint.",
"author": "David Sherret",
"publisher": "dprint",
"version": "0.1.2",
"version": "0.1.3",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export function activate(context: vscode.ExtensionContext) {
);
context.subscriptions.push(formattingSubscription);
} catch (err) {
vscode.window.showErrorMessage("Error initializing dprint. {}", err);
vscode.window.showErrorMessage("Error initializing dprint.", err);
console.error("[dprint]:", err);
}

Expand Down

0 comments on commit afe7b39

Please sign in to comment.