From f3617cc5229f2c9149ca4a88d420d1bcfd5462ce Mon Sep 17 00:00:00 2001 From: vvakame Date: Mon, 12 Jan 2015 11:24:20 +0900 Subject: [PATCH] fix typo... hehe :P --- which/which-tests.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/which/which-tests.ts b/which/which-tests.ts index 172cff91c..45a376dcb 100644 --- a/which/which-tests.ts +++ b/which/which-tests.ts @@ -1,10 +1,10 @@ /// -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);