From 557ce1f51295a4688a7de70afbf6671784121d3d Mon Sep 17 00:00:00 2001 From: Richard Keenan Date: Fri, 8 Sep 2017 11:31:05 +0100 Subject: [PATCH] Fixed typo in error message when failed to find rake tasks --- src/task/rake.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/task/rake.ts b/src/task/rake.ts index fe1ef3e5c..e9104688d 100644 --- a/src/task/rake.ts +++ b/src/task/rake.ts @@ -133,7 +133,7 @@ async function getRakeTasks(): Promise { 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; }