Skip to content

Commit

Permalink
minor: scrapy.Spider docs grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
tagatac authored and dangra committed Dec 30, 2015
1 parent 1b85bcf commit 1ddcc7b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/topics/spiders.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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
Expand Down

0 comments on commit 1ddcc7b

Please sign in to comment.