From 0ad01c34d44c926d074d12d64e7bb2aae2a329a3 Mon Sep 17 00:00:00 2001 From: Hart Date: Sat, 3 Aug 2013 17:06:10 -0700 Subject: [PATCH 1/2] fixed typo to parallel fix on 0.16 branch --- docs/faq.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/faq.rst b/docs/faq.rst index 37ef4b8dc..88676a7ea 100644 --- a/docs/faq.rst +++ b/docs/faq.rst @@ -84,8 +84,8 @@ How can I simulate a user login in my spider? See :ref:`topics-request-response-ref-request-userlogin`. -Does Scrapy crawl in breath-first or depth-first order? -------------------------------------------------------- +Does Scrapy crawl in breadth-first or depth-first order? +-------------------------------------------------------- By default, Scrapy uses a `LIFO`_ queue for storing pending requests, which basically means that it crawls in `DFO order`_. This order is more convenient From c00c4d714886449e82bddf02a1557a9f99108d74 Mon Sep 17 00:00:00 2001 From: Hart Date: Sat, 3 Aug 2013 17:08:58 -0700 Subject: [PATCH 2/2] correction to description of example XPath retrieval in overview doc --- docs/intro/overview.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/intro/overview.rst b/docs/intro/overview.rst index 1e9a62ee0..eed4bdac4 100644 --- a/docs/intro/overview.rst +++ b/docs/intro/overview.rst @@ -125,7 +125,7 @@ tag with ``id=specifications``:: .. highlight:: none -An XPath expression to select the description could be:: +An XPath expression to select the file size could be:: //div[@id='specifications']/p[2]/text()[2]