Fixed typos (#6497)

This commit is contained in:
Julian Ste 2024-10-17 17:03:16 +02:00 committed by GitHub
parent f65e64a724
commit c8e87ab21a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -269,7 +269,7 @@ To dump into a CSV file::
scrapy crawl myspider -O items.csv
To dump into a XML file::
To dump into an XML file::
scrapy crawl myspider -O items.xml
@ -417,8 +417,8 @@ How can I make a blank request?
blank_request = Request("data:,")
In this case, the URL is set to a data URI scheme. Data URLs allow you to include data
in-line in web pages as if they were external resources. The "data:" scheme with an empty
In this case, the URL is set to a data URI scheme. Data URLs allow you to include data
inline within web pages, similar to external resources. The "data:" scheme with an empty
content (",") essentially creates a request to a data URL without any specific content.