mirror of https://github.com/scrapy/scrapy.git
Fix missing load_object import and grammar in docs (#7417)
Co-authored-by: NI <Nidotexe@gmail.com>
This commit is contained in:
parent
47e25fbbb5
commit
508367664f
|
|
@ -166,7 +166,7 @@ Use a fallback component:
|
|||
|
||||
.. code-block:: python
|
||||
|
||||
from scrapy.utils.misc import build_from_crawler
|
||||
from scrapy.utils.misc import build_from_crawler, load_object
|
||||
|
||||
|
||||
FALLBACK_SETTING = "MY_FALLBACK_DOWNLOAD_HANDLER"
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ this:
|
|||
:meth:`~scrapy.spidermiddlewares.SpiderMiddleware.process_spider_output`).
|
||||
|
||||
8. The :ref:`Engine <component-engine>` sends processed items to
|
||||
:ref:`Item Pipelines <component-pipelines>`, then send processed Requests to
|
||||
:ref:`Item Pipelines <component-pipelines>`, then sends processed Requests to
|
||||
the :ref:`Scheduler <component-scheduler>` and asks for possible next Requests
|
||||
to crawl.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue