From 47e3a9ff854d8b153d315a7068bbd972e48e9e91 Mon Sep 17 00:00:00 2001 From: Paul Vick Date: Thu, 6 Feb 2014 10:51:54 -0800 Subject: [PATCH] Fix typo in jake. --- jake/jake.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jake/jake.d.ts b/jake/jake.d.ts index c0d567bb78..349e08e52c 100644 --- a/jake/jake.d.ts +++ b/jake/jake.d.ts @@ -174,7 +174,7 @@ declare module jake{ * Perform this task asynchronously. If you flag a task with this option, you must call the global `complete` method inside the task's action, for execution to proceed to the next task. * @default false */ - asyc?: boolean; + async?: boolean; } /** @@ -225,7 +225,7 @@ declare module jake{ * Perform this task asynchronously. If you flag a task with this option, you must call the global `complete` method inside the task's action, for execution to proceed to the next task. * @default false */ - asyc?: boolean; + async?: boolean; } export class FileTask{