Merge pull request #1449 from rhoekman/patch-1

Small grammatical change
This commit is contained in:
Elias Dorneles 2015-08-26 14:25:32 -03:00
commit 7d6538c536
1 changed files with 2 additions and 2 deletions

View File

@ -83,8 +83,8 @@ sites, we define fields for each of these three attributes. To do that, we edit
link = scrapy.Field()
desc = scrapy.Field()
This may seem complicated at first, but defining the item allows you to use other handy
components of Scrapy that need to know what does your item look like.
This may seem complicated at first, but defining an item class allows you to use other handy
components and helpers within Scrapy.
Our first Spider
================