Fix typo in jake.

This commit is contained in:
Paul Vick
2014-02-06 10:54:26 -08:00
parent 71e3f62db7
commit 47e3a9ff85
+2 -2
View File
@@ -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{