From e1683ddf9baf90901c1a6e56505625f8a02b1c40 Mon Sep 17 00:00:00 2001 From: Pablo Hoffman Date: Wed, 9 Oct 2013 17:24:12 -0200 Subject: [PATCH] fix doc typo --- docs/intro/tutorial.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/intro/tutorial.rst b/docs/intro/tutorial.rst index 9cc3d2d47..495f8b9f8 100644 --- a/docs/intro/tutorial.rst +++ b/docs/intro/tutorial.rst @@ -68,7 +68,7 @@ Defining our Item like simple python dicts but provide additional protecting against populating undeclared fields, to prevent typos. -They are declared by creating an :class:`scrapy.item.Item` class an defining +They are declared by creating an :class:`scrapy.item.Item` class and defining its attributes as :class:`scrapy.item.Field` objects, like you will in an ORM (don't worry if you're not familiar with ORMs, you will see that this is an easy task).