Skip to content

Commit

Permalink
fix a couple of typos in sep-19
Browse files Browse the repository at this point in the history
  • Loading branch information
kmike committed Jul 3, 2014
1 parent 19dc3fa commit f3f3a44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sep/sep-019.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ and whole crawl workflow.
In short, you will be able to overwrite settings (on a per-spider basis) by
implementing a class method in your spider::

def MySpider(BaseSpider):
class MySpider(Spider):

@classmethod
def custom_settings(cls):
Expand Down Expand Up @@ -199,7 +199,7 @@ A new class method ``custom_settings`` is proposed, that could be use to
override project and default settings before they're used to instantiate the
crawler::

def MySpider(BaseSpider):
class MySpider(Spider):

@classmethod
def custom_settings(cls):
Expand Down

0 comments on commit f3f3a44

Please sign in to comment.