Browse Source

Fixes rst errors

Ask Solem 13 years ago
parent
commit
a1fe8b27ee
4 changed files with 6 additions and 6 deletions
  1. 3 3
      Changelog
  2. 1 1
      celery/worker/hub.py
  3. 1 1
      docs/faq.rst
  4. 1 1
      docs/getting-started/intro.rst

+ 3 - 3
Changelog

@@ -236,7 +236,7 @@ Fixes
 
     Fix contributed by Mitar.
 
-* Daemonization cookbook: Adds a configuration example using Django and
+* Daemonization tutorial: Adds a configuration example using Django and
   virtualenv together (Issue #505).
 
     Contributed by Juan Ignacio Catalano.
@@ -1325,7 +1325,7 @@ Fixes
 * celeryd-multi/celeryd_detach: Now logs errors occuring when executing
   the `celeryd` command.
 
-* daemonizing cookbook: Fixed typo ``--time-limit 300`` ->
+* daemonizing tutorial: Fixed typo ``--time-limit 300`` ->
   ``--time-limit=300``
 
 * Colors in logging broke non-string objects in log messages.
@@ -2267,7 +2267,7 @@ News
     and shutting down worker nodes.
 
     There's also a Debian init.d script for :mod:`~celery.bin.celeryev` available,
-    see :doc:`cookbook/daemonizing` for more information.
+    see :doc:`tutorial/daemonizing` for more information.
 
     New command line arguments to celeryev:
 

+ 1 - 1
celery/worker/hub.py

@@ -47,7 +47,7 @@ class BoundedSemaphore(object):
         the semaphore is ready.
 
         :param callback: The callback to apply.
-        :param *partial_args: partial arguments to callback.
+        :param \*partial_args: partial arguments to callback.
 
         """
         if self.value <= 0:

+ 1 - 1
docs/faq.rst

@@ -638,7 +638,7 @@ Can I specify a custom task_id?
 Can I use decorators with tasks?
 --------------------------------
 
-**Answer**: Yes.  But please see note in the sidebar at :ref:`tasks-basics`.
+**Answer**: Yes.  But please see note in the sidebar at :ref:`task-basics`.
 
 .. _faq-natural-task-ids:
 

+ 1 - 1
docs/getting-started/intro.rst

@@ -17,7 +17,7 @@ Celery Features
 
 Celery requires a message broker to send and receive messages,
 but this term has been stretched to include everything from
-financial-grade messaging systems to you fridge (no offense)
+financial-grade messaging systems to your fridge (no offense)
 
 RabbitMQ, Redis, MongoDB, Amazon SQS, CouchDB, Beanstalk, Apache ZooKeeper,
 or Databases (SQLAlchemy/Django ORM).