From 30c33c0c482b56e7a00f6a87907f9621a8ec5d23 Mon Sep 17 00:00:00 2001 From: Aaron Meese Date: Sat, 30 Apr 2022 19:47:27 -0400 Subject: [PATCH] Fixed author typo Now the demo works as intended :) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }); ```