Skip to content

Commit

Permalink
Fix async function
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarandreu authored and jonathanong committed Feb 16, 2015
1 parent a32f30b commit a19a99c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ stack.push(function (next) {
});

// async/await functions
stack.push(function async (next) {
stack.push(async function (next) {
return await Promise.resolve(true);
});

Expand Down

0 comments on commit a19a99c

Please sign in to comment.