From 962e5ef702e3a606cfbac7c6be0a793959ae0b09 Mon Sep 17 00:00:00 2001 From: malcolm m Date: Sun, 5 Jan 2014 14:42:48 -0800 Subject: [PATCH] Clarify return value from extract_links --- docs/topics/link-extractors.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/link-extractors.rst b/docs/topics/link-extractors.rst index 1c3ab4fd3..63899b2d6 100644 --- a/docs/topics/link-extractors.rst +++ b/docs/topics/link-extractors.rst @@ -14,7 +14,7 @@ interface. The only public method that every LinkExtractor has is ``extract_links``, which receives a :class:`~scrapy.http.Response` object and returns a list -of links. Link Extractors are meant to be instantiated once and their +of :class:`scrapy.link.Link` objects. Link Extractors are meant to be instantiated once and their ``extract_links`` method called several times with different responses, to extract links to follow.