doc: fixed a couple of broken links

--HG--
extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%401054
This commit is contained in:
Pablo Hoffman 2009-04-12 09:05:00 +00:00
parent 50efaab447
commit 54ad49f765
2 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ The purpose of this document is to introduce you to the concepts behind Scrapy
so you can get an idea of how it works and decide if Scrapy is what you need.
When you're ready to start a project, you can :ref:`start with the tutorial
<intro-tutorial1>`. For more detailed information you can take a look at the
<intro-tutorial>`. For more detailed information you can take a look at the
:ref:`documentation contents <index>`.
Pick a website
@ -187,7 +187,7 @@ What's next?
============
The next obvious steps are for you to `download Scrapy`_, read :ref:`the
tutorial <intro-tutorial1>` and join `the community`_. Thanks for your
tutorial <intro-tutorial>` and join `the community`_. Thanks for your
interest!
.. _download Scrapy: http://scrapy.org/download/

View File

@ -6,7 +6,7 @@ Spiders
Spiders are user written classes which define how a certain site (or domain)
will be scraped; including how to crawl the site and how to scrape :ref:`Items
<items>` from their pages.
<topics-items>` from their pages.
All Spiders must be descendant of :class:`~scrapy.spider.BaseSpider` or any
subclass of it, below you can see a list of available Spiders in Scrapy.