Skip to content

Commit

Permalink
Merge pull request #32 from baurine/update-message-wording
Browse files Browse the repository at this point in the history
update message wording
  • Loading branch information
baurine authored Feb 2, 2021
2 parents b762f13 + b5e8e05 commit 684ba7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cluster/command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ export class ClusterCommand {
}
const wd = (vscode.workspace.workspaceFolders || []).find((folder) => folder.name === instanceName);
if (!wd) {
vscode.window.showErrorMessage(`${instanceName} is not included in workspace, maybe you want to try 'ticode init'?`);
vscode.window.showErrorMessage(`${instanceName} is not included in workspace, please add it into workspace.`);
return
}
switch (instanceName) {
Expand Down
2 changes: 1 addition & 1 deletion src/playground/command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ export class PlaygroundCommand {
)
if (!wd) {
vscode.window.showErrorMessage(
`${instanceName} is not included in workspace, maybe you want to try 'ticode init'?`
`${instanceName} is not included in workspace, please add it into workspace.`
)
return
}
Expand Down

0 comments on commit 684ba7e

Please sign in to comment.