PR corrections

This commit is contained in:
yoavgurevich 2014-12-04 09:23:38 -05:00
parent d720f65d23
commit 32265e92d7
2 changed files with 2 additions and 2 deletions

View File

@ -65,7 +65,7 @@ module.exports = function(grunt) {
exclude: ["./node_modules/request/index.js"]
}
},
perfTest: {
perf: {
src: "./tests/perf/index.js",
dest: "./tests/perf/filer-perf-test.js",
options: {

View File

@ -1,4 +1,4 @@
function nextTick(cb) {
function setImmediate(cb) {
setTimeout(cb, 0);
}