fix typo... hehe :P

This commit is contained in:
vvakame
2015-01-12 11:24:20 +09:00
parent b55b894558
commit f3617cc522

View File

@@ -1,10 +1,10 @@
/// <reference path="./which.d.ts" />
import when = require("when");
import which = require("which");
when("cat", (err, path) => {
which("cat", (err, path) => {
console.log(path);
});
var path = when.sync("cat");
var path = which.sync("cat");
console.log(path);