Improve documentation

This commit is contained in:
Luiz Silva 2019-12-06 19:12:41 -03:00
parent 195f43b054
commit 509865d10b
3 changed files with 3 additions and 3 deletions

View File

@ -172,7 +172,7 @@ Request objects
``copy()`` or ``replace()`` methods, and can also be accessed, in your
spider, from the ``response.meta`` attribute.
Values are only acessible on the next :class:`Response`, to forward a key/value
Values are only acessible on the next :class:`~scrapy.http.Response`, to forward a key/value
through subsequent responses see :class:`~scrapy.spidermiddlewares.stickymeta.StickyMetaParamsMiddleware`.
.. attribute:: Request.cb_kwargs

View File

@ -1390,7 +1390,7 @@ STICKY_META_KEYS
Default: ``[]`` (empty list)
Configure which key/values should be stickied in :attr:`Request.meta`. See
Configure which key/values should be stickied in :attr:`Request.meta <scrapy.http.Request.meta>`. See
:class:`~scrapy.spidermiddlewares.stickymeta.StickyMetaParamsMiddleware` for more info.
.. setting:: TELNETCONSOLE_ENABLED

View File

@ -463,7 +463,7 @@ StickyMetaParamsMiddleware
When enabled and configured, this middleware forwards the desired :ref:`Request.meta <topics-request-meta>`
parameters between ``Requests`` and ``Responses``.
The :class:`StickyMetaParamsMiddleware` can be configured through the settings :setting:`STICKY_META_KEYS`.
The :class:`StickyMetaParamsMiddleware` can be configured through the :setting:`STICKY_META_KEYS` setting.
See the difference between :ref:`topics-spiders` with and without the middleware: