grammar fix - delete unneeded apostrophe in "lets"

This commit is contained in:
float13 2019-04-05 00:54:46 -04:00
parent c2d8f6f456
commit 6336e1d1f3
1 changed files with 1 additions and 1 deletions

View File

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