Skip to content

Commit

Permalink
Spelling fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
seales authored and dangra committed Dec 30, 2015
1 parent da3c155 commit 823a1cc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion sep/sep-003.rst
Expand Up @@ -146,7 +146,7 @@ Default values

p['numbers'] # returns []

Accesing and changing nested item values
Accessing and changing nested item values
----------------------------------------

::
Expand Down
2 changes: 1 addition & 1 deletion sep/sep-014.rst
Expand Up @@ -54,7 +54,7 @@ Request Extractors

Request Extractors takes response object and determines which requests follow.

This is an enhancemente to ``LinkExtractors`` which returns urls (links),
This is an enhancement to ``LinkExtractors`` which returns urls (links),
Request Extractors return Request objects.

Request Processors
Expand Down
2 changes: 1 addition & 1 deletion sep/sep-018.rst
Expand Up @@ -477,7 +477,7 @@ This is a port of the Offsite middleware to the new spider middleware API:
def should_follow(self, request, spider):
info = self.spiders[spider]
# hostanme can be None for wrong urls (like javascript links)
# hostname can be None for wrong urls (like javascript links)
host = urlparse_cached(request).hostname or ''
return bool(info.regex.search(host))

Expand Down
4 changes: 2 additions & 2 deletions sep/sep-020.rst
Expand Up @@ -23,9 +23,9 @@ Rationale
=========

There are certain markup patterns that lend themselves quite nicely to
automated parsing, for example the ``<table>`` tag outlilnes such a pattern
automated parsing, for example the ``<table>`` tag outlines such a pattern
for populating a database table with the embedded ``<tr>`` elements denoting
the rows and the furthur embedded ``<td>`` elements denoting the individual
the rows and the further embedded ``<td>`` elements denoting the individual
fields.

One pattern that is particularly well suited for auto-populating an Item Loader
Expand Down

0 comments on commit 823a1cc

Please sign in to comment.