Merge pull request #3724 from float13/tutorial_grammar

[MRG+1] Docs - Tutorial - Minor grammar edits
This commit is contained in:
Mikhail Korobov 2019-04-05 12:31:59 +05:00 committed by GitHub
commit d39feabae3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -205,7 +205,7 @@ Extracting data
---------------
The best way to learn how to extract data with Scrapy is trying selectors
using the shell :ref:`Scrapy shell <topics-shell>`. Run::
using the :ref:`Scrapy shell <topics-shell>`. Run::
scrapy shell 'http://quotes.toscrape.com/page/1/'
@ -296,8 +296,8 @@ expressions`_::
In order to find the proper CSS selectors to use, you might find useful opening
the response page from the shell in your web browser using ``view(response)``.
You can use your browser developer tools to inspect the HTML and come up
with a selector (see section about :ref:`topics-developer-tools`).
You can use your browser's developer tools to inspect the HTML and come up
with a selector (see :ref:`topics-developer-tools`).
`Selector Gadget`_ is also a nice tool to quickly find CSS selector for
visually selected elements, which works in many browsers.
@ -511,7 +511,7 @@ We can try extracting it in the shell::
'<a href="/page/2/">Next <span aria-hidden="true">→</span></a>'
This gets the anchor element, but we want the attribute ``href``. For that,
Scrapy supports a CSS extension that let's you select the attribute contents,
Scrapy supports a CSS extension that lets you select the attribute contents,
like this::
>>> response.css('li.next a::attr(href)').get()