From 87522942e2cc1c063882ab22e54c05aebd832dd8 Mon Sep 17 00:00:00 2001 From: Rick Date: Sun, 23 Aug 2015 15:58:53 +0200 Subject: [PATCH] Small grammatical change --- docs/intro/tutorial.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/intro/tutorial.rst b/docs/intro/tutorial.rst index e9df9c2d2..45d1f9b29 100644 --- a/docs/intro/tutorial.rst +++ b/docs/intro/tutorial.rst @@ -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 ================