mirror of https://github.com/scrapy/scrapy.git
fixed some doc typos
--HG-- extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%40815
This commit is contained in:
parent
005a642240
commit
20a61caa2c
|
|
@ -16,7 +16,7 @@ Quick example
|
|||
|
||||
Here's a quick example of how to log a message using the ``WARNING`` level::
|
||||
|
||||
from scrapy.log
|
||||
from scrapy import log
|
||||
log.msg("This is a warning", level=log.WARNING)
|
||||
|
||||
scrapy.log module
|
||||
|
|
|
|||
|
|
@ -128,7 +128,7 @@ CLUSTER_MASTER_ENABLED
|
|||
|
||||
Default: ``False``
|
||||
|
||||
A boolen which specifies whether to enabled the cluster master.
|
||||
A boolean which specifies whether to enabled the cluster master.
|
||||
|
||||
.. setting:: CLUSTER_MASTER_NODES
|
||||
|
||||
|
|
@ -173,7 +173,7 @@ CLUSTER_WORKER_ENABLED
|
|||
|
||||
Default: ``False``
|
||||
|
||||
A boolen which specifies whether to enabled the cluster master.
|
||||
A boolean which specifies whether to enabled the cluster master.
|
||||
|
||||
.. setting:: CLUSTER_WORKER_MAXPROC
|
||||
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ components.
|
|||
Item pipeline example
|
||||
=====================
|
||||
|
||||
Let's take a look at following hypotetic pipeline that adjusts the ``price``
|
||||
Let's take a look at following hypothetic pipeline that adjusts the ``price``
|
||||
attribute for those items that do not include VAT (``price_excludes_vat``
|
||||
attribute), and drops those items which don't contain a price::
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue