From a3697421c011a5a8dcc48f7eae3e2caa84ce19fc Mon Sep 17 00:00:00 2001 From: Pablo Hoffman Date: Thu, 11 Aug 2011 09:19:59 -0300 Subject: [PATCH] some minor updates to documentation --- docs/intro/examples.rst | 10 ++++++---- docs/topics/settings.rst | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/docs/intro/examples.rst b/docs/intro/examples.rst index cb54563d0..8e8b77fc7 100644 --- a/docs/intro/examples.rst +++ b/docs/intro/examples.rst @@ -4,9 +4,10 @@ Examples ======== -The best way to learn is with examples. For this reason, there is an example -Scrapy project named dirbot_, that you can use to play and learn more about -Scrapy. It contains the dmoz spider described in the tutorial. +The best way to learn is with examples, and Scrapy is no exception. For this +reason, there is an example Scrapy project named dirbot_, that you can use to +play and learn more about Scrapy. It contains the dmoz spider described in the +tutorial. This dirbot_ project is available at: https://github.com/scrapy/dirbot @@ -23,7 +24,8 @@ called `Scrapy snippets`_. 2. There is also a `Scrapy Recipes`_ page on the wiki that contains code snippets for performing not-so-trivial tasks. This contains code posted before -the `Scrapy snippets`_ site was lunched. New code should be posted there. +the `Scrapy snippets`_ site was lunched. New code should be posted in `Scrapy +snippets`_. .. _dirbot: https://github.com/scrapy/dirbot .. _Downloads: https://github.com/scrapy/dirbot/archives/master diff --git a/docs/topics/settings.rst b/docs/topics/settings.rst index 8f4b194ce..b218ba8f4 100644 --- a/docs/topics/settings.rst +++ b/docs/topics/settings.rst @@ -340,7 +340,7 @@ Default: ``1`` An integer that is used to set the request priority based on request depth. -To crawl in `breath-first order`_, set :setting:`DEPTH_PRIORITY` to ``1``. +To crawl in `breadth-first order`_, set :setting:`DEPTH_PRIORITY` to ``1``. To crawl in `depth-first order`_, set :setting:`DEPTH_PRIORITY` to ``-1``.