Skip to content

Commit

Permalink
Fix a template string.
Browse files Browse the repository at this point in the history
  • Loading branch information
hokein committed May 27, 2020
1 parent 3132e53 commit 55d2819
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/install.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ class UI {
const p = this.clangdPath;
let message = '';
if (p.indexOf(path.sep) < 0) {
message += 'The ${p} language server was not found on your PATH.\n';
message += `The '${p}' language server was not found on your PATH.\n`;
} else {
message += `The clangd binary '${p}' was not found.\n`;
}
Expand Down

0 comments on commit 55d2819

Please sign in to comment.