1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-23 21:44:19 +00:00

fix doc typo

This commit is contained in:
Pablo Hoffman 2013-10-09 17:24:12 -02:00
parent ce82d22c9e
commit e1683ddf9b

View File

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