Commit bed988a8 bed988a8e9bb758a590a8333f42c8cbd62718c4d by Rasmus Wriedt Larsen

Minor typo correction

1 parent ab8f3ded
...@@ -568,7 +568,7 @@ Casper.prototype.die = function die(message, status) { ...@@ -568,7 +568,7 @@ Casper.prototype.die = function die(message, status) {
568 this.result.status = "error"; 568 this.result.status = "error";
569 this.result.time = new Date().getTime() - this.startTime; 569 this.result.time = new Date().getTime() - this.startTime;
570 if (!utils.isString(message) || !message.length) { 570 if (!utils.isString(message) || !message.length) {
571 message = "Suite explicitely interrupted without any message given."; 571 message = "Suite explicitly interrupted without any message given.";
572 } 572 }
573 this.log(message, "error"); 573 this.log(message, "error");
574 this.echo(message, "ERROR"); 574 this.echo(message, "ERROR");
......