From 6336e1d1f31da8611a0b63dcb536529e9027d51b Mon Sep 17 00:00:00 2001
From: float13 <43447704+float13@users.noreply.github.com>
Date: Fri, 5 Apr 2019 00:54:46 -0400
Subject: [PATCH 1/4] grammar fix - delete unneeded apostrophe in "lets"
---
docs/intro/tutorial.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/intro/tutorial.rst b/docs/intro/tutorial.rst
index 41e61542a..b2f952fe2 100644
--- a/docs/intro/tutorial.rst
+++ b/docs/intro/tutorial.rst
@@ -511,7 +511,7 @@ We can try extracting it in the shell::
'Next →'
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()
From d711ecfc18a01084f74bb2b9dc01c8bcb4772580 Mon Sep 17 00:00:00 2001
From: float13 <43447704+float13@users.noreply.github.com>
Date: Fri, 5 Apr 2019 00:56:51 -0400
Subject: [PATCH 2/4] grammar fix - delete extra word "shell"
---
docs/intro/tutorial.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/intro/tutorial.rst b/docs/intro/tutorial.rst
index b2f952fe2..fc10adbe1 100644
--- a/docs/intro/tutorial.rst
+++ b/docs/intro/tutorial.rst
@@ -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 `. Run::
+using the :ref:`Scrapy shell `. Run::
scrapy shell 'http://quotes.toscrape.com/page/1/'
From 77e3695686d9a46841778248f4c1a2da336b54f7 Mon Sep 17 00:00:00 2001
From: float13 <43447704+float13@users.noreply.github.com>
Date: Fri, 5 Apr 2019 01:04:59 -0400
Subject: [PATCH 3/4] grammar fix - add apostrophe-s to browser
---
docs/intro/tutorial.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/intro/tutorial.rst b/docs/intro/tutorial.rst
index fc10adbe1..a97f96801 100644
--- a/docs/intro/tutorial.rst
+++ b/docs/intro/tutorial.rst
@@ -296,7 +296,7 @@ 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
+You can use your browser's developer tools to inspect the HTML and come up
with a selector (see section about :ref:`topics-developer-tools`).
`Selector Gadget`_ is also a nice tool to quickly find CSS selector for
From a101d5fe5c215bfbb09732fb506d4cd016624d80 Mon Sep 17 00:00:00 2001
From: float13 <43447704+float13@users.noreply.github.com>
Date: Fri, 5 Apr 2019 01:12:20 -0400
Subject: [PATCH 4/4] text edit - delete 2 extra words
---
docs/intro/tutorial.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/intro/tutorial.rst b/docs/intro/tutorial.rst
index a97f96801..8bd2d27dd 100644
--- a/docs/intro/tutorial.rst
+++ b/docs/intro/tutorial.rst
@@ -297,7 +297,7 @@ 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's developer tools to inspect the HTML and come up
-with a selector (see section about :ref:`topics-developer-tools`).
+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.