Fix typo in sep-014.rst

requets -> requests
This commit is contained in:
Ikko Ashimine 2022-07-15 18:16:23 +09:00 committed by GitHub
parent 49942026d8
commit 2f13f23d92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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)