Commit 06ea431b 06ea431b029f9c3e40832bbc3ae62681538dfa11 by Nicolas Perriault

fixed #127 - typo

1 parent 5eadafd9
1 Subproject commit adb2d754c65061d7607c30247575e46c203e3731 1 Subproject commit f39cf6aa2c4707337c9abfb3d8b92fd8e840ae18
......
...@@ -1081,7 +1081,7 @@ Casper.prototype.wait = function wait(timeout, then) { ...@@ -1081,7 +1081,7 @@ Casper.prototype.wait = function wait(timeout, then) {
1081 return this.then(function _step() { 1081 return this.then(function _step() {
1082 this.waitStart(); 1082 this.waitStart();
1083 setTimeout(function _check(self) { 1083 setTimeout(function _check(self) {
1084 self.log(f("wait() finished wating for %dms.", timeout), "info"); 1084 self.log(f("wait() finished waiting for %dms.", timeout), "info");
1085 if (then) { 1085 if (then) {
1086 then.call(self, self); 1086 then.call(self, self);
1087 } 1087 }
......