Skip to content

Commit

Permalink
Rename variable "import" to "imported"
Browse files Browse the repository at this point in the history
  • Loading branch information
jameshfisher committed Jul 15, 2011
1 parent 12b7d1b commit bb86d39
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/stylus
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});
});
Expand Down

0 comments on commit bb86d39

Please sign in to comment.