From 1ddcc7b96ac3fcb9ab6bebb249b6406d802eed7d Mon Sep 17 00:00:00 2001 From: David Tagatac Date: Thu, 27 Aug 2015 17:37:16 -0400 Subject: [PATCH] minor: scrapy.Spider docs grammar --- docs/topics/spiders.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/topics/spiders.rst b/docs/topics/spiders.rst index 9c54a255e..5fd187e4e 100644 --- a/docs/topics/spiders.rst +++ b/docs/topics/spiders.rst @@ -108,7 +108,7 @@ scrapy.Spider .. attribute:: settings - Configuration on which this spider is been ran. This is a + Configuration for running this spider. This is a :class:`~scrapy.settings.Settings` instance, see the :ref:`topics-settings` topic for a detailed introduction on this subject. @@ -122,12 +122,12 @@ scrapy.Spider This is the class method used by Scrapy to create your spiders. - You probably won't need to override this directly, since the default + You probably won't need to override this directly because the default implementation acts as a proxy to the :meth:`__init__` method, calling it with the given arguments `args` and named arguments `kwargs`. Nonetheless, this method sets the :attr:`crawler` and :attr:`settings` - attributes in the new instance, so they can be accessed later inside the + attributes in the new instance so they can be accessed later inside the spider's code. :param crawler: crawler to which the spider will be bound