Skip to content

Commit

Permalink
Fix typo in sep-014.rst
Browse files Browse the repository at this point in the history
requets -> requests
  • Loading branch information
eltociear authored Jul 15, 2022
1 parent 4994202 commit 2f13f23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sep/sep-014.rst
Original file line number Diff line number Diff line change
Expand Up @@ -590,11 +590,11 @@ Request Generator

def generate_requests(self, response):
"""
Extract and process new requets from response
Extract and process new requests from response
"""
requests = []
for ext in self._request_extractors:
requets.extend(ext.extract_requests(response))
requests.extend(ext.extract_requests(response))

for proc in self._request_processors:
requests = proc(requests)
Expand Down

0 comments on commit 2f13f23

Please sign in to comment.