diff --git a/README.md b/README.md index 7c4914a..eeb0376 100644 --- a/README.md +++ b/README.md @@ -155,7 +155,7 @@ $client->get('https://quotes.toscrape.com/js/'); $crawler->filter('.quote')->each(function ($node) { $author = $node->filter('.author')->text(); $quote = $node->filter('.text')->text(); - echo $autor." - ".$quote + echo $author." - ".$quote }); ```