From 9c9d2e059bb2fcd176fd6cc5bf4fdae2c493a57e Mon Sep 17 00:00:00 2001 From: David Tagatac Date: Fri, 31 Jul 2015 17:01:59 -0400 Subject: [PATCH] minor: scrapy.Spider grammar and clarity --- docs/topics/spiders.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/spiders.rst b/docs/topics/spiders.rst index 025d527a6..025232fab 100644 --- a/docs/topics/spiders.rst +++ b/docs/topics/spiders.rst @@ -53,7 +53,7 @@ scrapy.Spider .. class:: Spider() This is the simplest spider, and the one from which every other spider - must inherit from (either the ones that come bundled with Scrapy, or the ones + must inherit (including spiders that come bundled with Scrapy, as well as spiders that you write yourself). It doesn't provide any special functionality. It just provides a default :meth:`start_requests` implementation which sends requests from the :attr:`start_urls` spider attribute and calls the spider's method ``parse``