From 2865b7750631ba731508b0e5201dc2d5b2db0429 Mon Sep 17 00:00:00 2001 From: Plonko Date: Thu, 30 Apr 2020 16:31:12 +0100 Subject: [PATCH 1/2] Small suggestion to make this a bit more clear. I found the previous a bit clunky, it seemed to change tense, but I think it just meant as I have suggested. --- docs/intro/tutorial.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/intro/tutorial.rst b/docs/intro/tutorial.rst index 5f35dc936..3d6d5ab3d 100644 --- a/docs/intro/tutorial.rst +++ b/docs/intro/tutorial.rst @@ -124,9 +124,9 @@ and defines some attributes and methods: is an instance of :class:`~scrapy.http.TextResponse` that holds the page content and has further helpful methods to handle it. - The :meth:`~scrapy.spiders.Spider.parse` method usually parses the response, extracting - the scraped data as dicts and also finding new URLs to - follow and creating new requests (:class:`~scrapy.http.Request`) from them. + The :meth:`~scrapy.spiders.Spider.parse` method usually parses the response: it extracts + the scraped data as dicts, finds new URLs to + follow and creates new requests (:class:`~scrapy.http.Request`) from them. How to run our spider --------------------- From 3e70d5c9dc487c55022a138a5aef62f2e664eed3 Mon Sep 17 00:00:00 2001 From: Plonko Date: Fri, 15 May 2020 14:57:10 +0100 Subject: [PATCH 2/2] Update docs/intro/tutorial.rst MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Adrián Chaves --- 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 3d6d5ab3d..ee19992e1 100644 --- a/docs/intro/tutorial.rst +++ b/docs/intro/tutorial.rst @@ -125,7 +125,7 @@ and defines some attributes and methods: the page content and has further helpful methods to handle it. The :meth:`~scrapy.spiders.Spider.parse` method usually parses the response: it extracts - the scraped data as dicts, finds new URLs to + the scraped data as dicts, and finds new URLs to follow and creates new requests (:class:`~scrapy.http.Request`) from them. How to run our spider