Skip to content

Commit c152682

Browse files
committed
Merge pull request scrapy#362 from hmsimha/0.16
Scrapy 0.16 Overview doc issues: class definition name, and bad XPath description
2 parents 19d7dde + b82f8dc commit c152682

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/intro/overview.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ This would be our Item::
4545

4646
from scrapy.item import Item, Field
4747

48-
class Torrent(Item):
48+
class TorrentItem(Item):
4949
url = Field()
5050
name = Field()
5151
description = Field()
@@ -125,7 +125,7 @@ tag with ``id=specifications``::
125125

126126
.. highlight:: none
127127

128-
An XPath expression to select the description could be::
128+
An XPath expression to select the file size could be::
129129

130130
//div[@id='specifications']/p[2]/text()[2]
131131

0 commit comments

Comments
 (0)