From 1d159ae6f978a4c172fe8e0aab0f8beb74615dc8 Mon Sep 17 00:00:00 2001 From: Elias Dorneles Date: Thu, 15 Sep 2016 15:37:03 -0300 Subject: [PATCH] minor grammar fix --- docs/intro/overview.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/intro/overview.rst b/docs/intro/overview.rst index fb390d79d..953fdc968 100644 --- a/docs/intro/overview.rst +++ b/docs/intro/overview.rst @@ -78,9 +78,9 @@ Spider definition inside it and ran it through its crawler engine. The crawl started by making requests to the URLs defined in the ``start_urls`` attribute (in this case, only the URL for quotes in *humor* category) and called the default callback method ``parse``, passing the response object as -an argument. In the ``parse`` callback we loop through the quote elements +an argument. In the ``parse`` callback, we loop through the quote elements using a CSS Selector, yield a Python dict with the extracted quote text and author, -look for a link to the next page and schedules another request using the same +look for a link to the next page and schedule another request using the same ``parse`` method as callback. Here you notice one of the main advantages about Scrapy: requests are