Skip to content
This repository has been archived by the owner on Jul 31, 2023. It is now read-only.

Fixed typo in error message when failed to find rake tasks #204

Merged
merged 1 commit into from
Jan 24, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/task/rake.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ async function getRakeTasks(): Promise<vscode.Task[]> {
if (err.stdout) {
channel.appendLine(err.stdout);
}
channel.appendLine('Auto detecting rake tasts failed.');
channel.appendLine('Auto detecting rake tasks failed.');
channel.show(true);
return emptyTasks;
}
Expand Down