minor grammar fix

This commit is contained in:
Elias Dorneles 2016-09-15 15:37:03 -03:00
parent 45219ea079
commit 511eb0d657
1 changed files with 2 additions and 2 deletions

View File

@ -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