From bb86d3992ea5522a4c94d4f76fccefb256f795a5 Mon Sep 17 00:00:00 2001 From: James Harrison Fisher Date: Fri, 15 Jul 2011 11:39:40 -0700 Subject: [PATCH] Rename variable "import" to "imported" --- bin/stylus | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) mode change 100755 => 100644 bin/stylus diff --git a/bin/stylus b/bin/stylus old mode 100755 new mode 100644 index 503bde7ee..0a7202dc5 --- a/bin/stylus +++ b/bin/stylus @@ -484,9 +484,9 @@ function watch(file, fn) { */ function watchImports(file, imports) { - imports.forEach(function(import){ - if (!import.path) return; - watch(import.path, function(){ + imports.forEach(function(imported){ + if (!imported.path) return; + watch(imported.path, function(){ compileFile(file); }); });