Fix typo on tutorial.rst (#5893) (#5895)

Co-authored-by: Seth Herr <seth.william.herr@gmail.com>
This commit is contained in:
Andrey Rakhmatullin 2023-04-14 18:13:21 +04:00 committed by GitHub
parent 441ac196e4
commit e1f66620ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -329,7 +329,7 @@ the :meth:`~scrapy.selector.SelectorList.re` method to extract using
>>> response.css("title::text").re(r"(\w+) to (\w+)")
['Quotes', 'Scrape']
In order to find the proper CSS selectors to use, you might find useful opening
In order to find the proper CSS selectors to use, you might find it useful to open
the response page from the shell in your web browser using ``view(response)``.
You can use your browser's developer tools to inspect the HTML and come up
with a selector (see :ref:`topics-developer-tools`).