Commit cf814807 cf814807dbb214f69865115133cfeda136e3b9ae by Nicolas Perriault

typo

1 parent 2de784a3
...@@ -208,7 +208,7 @@ Example: retrieving google logo image encoded in base64: ...@@ -208,7 +208,7 @@ Example: retrieving google logo image encoded in base64:
208 var base64logo = null; 208 var base64logo = null;
209 casper.start('http://www.google.fr/', function(self) { 209 casper.start('http://www.google.fr/', function(self) {
210 base64logo = self.base64encode('http://www.google.fr/images/srpr/logo3w.png'); 210 base64logo = self.base64encode('http://www.google.fr/images/srpr/logo3w.png');
211 }).run(function() { 211 }).run(function(self) {
212 self.echo(base64logo); 212 self.echo(base64logo);
213 }); 213 });
214 ``` 214 ```
......