Skip to content

Commit 823a1cc

Browse files
sealesdangra
authored andcommitted
Spelling fixes
1 parent da3c155 commit 823a1cc

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

sep/sep-003.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ Default values
146146

147147
p['numbers'] # returns []
148148

149-
Accesing and changing nested item values
149+
Accessing and changing nested item values
150150
----------------------------------------
151151

152152
::

sep/sep-014.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Request Extractors
5454

5555
Request Extractors takes response object and determines which requests follow.
5656

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

6060
Request Processors

sep/sep-018.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ This is a port of the Offsite middleware to the new spider middleware API:
477477
478478
def should_follow(self, request, spider):
479479
info = self.spiders[spider]
480-
# hostanme can be None for wrong urls (like javascript links)
480+
# hostname can be None for wrong urls (like javascript links)
481481
host = urlparse_cached(request).hostname or ''
482482
return bool(info.regex.search(host))
483483

sep/sep-020.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ Rationale
2323
=========
2424

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

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

0 commit comments

Comments
 (0)