Skip to content
This repository has been archived by the owner on Dec 30, 2019. It is now read-only.

Commit

Permalink
Fix indent in closures.
Browse files Browse the repository at this point in the history
  • Loading branch information
illusori committed Aug 25, 2012
1 parent e075f1c commit d2db463
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/core.js
Expand Up @@ -234,13 +234,13 @@ RECESS.prototype = {

if (this.options.format && this.options.format == 'compact') {
formatter = function (err) {
that.log(that.path + ':' + err.line + ':' + err.message)
}
that.log(that.path + ':' + err.line + ':' + err.message)
}
} else {
formatter = function (err) {
that.log(err.message)
err.extract && that.log(err.extract + '\n')
}
that.log(err.message)
err.extract && that.log(err.extract + '\n')
}
}

// iterate through each definition
Expand Down

0 comments on commit d2db463

Please sign in to comment.