From 6c1cacb5d5f0e5523d429cb89808dabfd824dcd5 Mon Sep 17 00:00:00 2001 From: Liu Siyuan Date: Sat, 6 May 2017 05:47:06 +0800 Subject: [PATCH] [MRG+1] doc: fix documentation error in link-extractor.rst (#2676) * fix doc error in link-extractor.rst * remove the import clause * update based on suggestion --- 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 01d7f0b97..f40a36d31 100644 --- a/docs/topics/link-extractors.rst +++ b/docs/topics/link-extractors.rst @@ -8,7 +8,7 @@ Link extractors are objects whose only purpose is to extract links from web pages (:class:`scrapy.http.Response` objects) which will be eventually followed. -There is ``scrapy.linkextractors import LinkExtractor`` available +There is ``scrapy.linkextractors.LinkExtractor`` available in Scrapy, but you can create your own custom Link Extractors to suit your needs by implementing a simple interface.