semicolon fixes subsequent to jshint run

This commit is contained in:
Steve Conover 2011-02-28 22:53:39 -08:00
parent 2731716ccb
commit f5afe18a6b
1 changed files with 3 additions and 3 deletions

View File

@ -29,11 +29,11 @@ jasmine.TrivialConsoleReporter = function(print) {
} }
function indent(str, spaces) { var lines = str.split("\n"); function indent(str, spaces) { var lines = str.split("\n");
var newArr = [] var newArr = [];
for(var i=0; i<lines.length; i++) { for(var i=0; i<lines.length; i++) {
newArr.push(repeat(" ", spaces).join("") + lines[i]) newArr.push(repeat(" ", spaces).join("") + lines[i]);
} }
return newArr.join("\n") return newArr.join("\n");
} }
function specFailureDetails(suiteDescription, specDescription, stackTraces) { function specFailureDetails(suiteDescription, specDescription, stackTraces) {