Commit 0442b8fd 0442b8fd86835156966d775dbfd9aeb40baa8ebc by Kevin Fung

Fix Typo in Casper Module Docs

The code example in `waitForSelectorTextChange()` had an unterminated string literal on line 2172.
1 parent 5c80139c
......@@ -2169,7 +2169,7 @@ is changed to a different value before processing the next step. Uses `waitFor()
casper.start('http://foo.bar/');
casper.waitForSelectorTextChange('.selector', function() {
this.echo('The text on .selector has been changed.);
this.echo('The text on .selector has been changed.');
});
casper.run();
......