fixed some doc typos

--HG--
extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%40815
This commit is contained in:
Pablo Hoffman 2009-01-30 23:20:21 +00:00
parent 005a642240
commit 20a61caa2c
3 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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

View File

@ -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::