Browse Source

Merge branch 'master' of github.com:ask/celery

Ask Solem 13 years ago
parent
commit
6c63456401
2 changed files with 2 additions and 2 deletions
  1. 1 1
      celery/concurrency/base.py
  2. 1 1
      docs/userguide/tasks.rst

+ 1 - 1
celery/concurrency/base.py

@@ -77,7 +77,7 @@ class BasePool(object):
             soft_timeout=None, timeout=None, **compat):
         """Equivalent of the :func:`apply` built-in function.
 
-        Callbacks should optimally return as soon as possible ince
+        Callbacks should optimally return as soon as possible since
         otherwise the thread which handles the result will get blocked.
 
         """

+ 1 - 1
docs/userguide/tasks.rst

@@ -584,7 +584,7 @@ STARTED
 ~~~~~~~
 
 Task has been started.
-Not reported by default, to enable please see :attr`Task.track_started`.
+Not reported by default, to enable please see :attr:`Task.track_started`.
 
 :metadata: `pid` and `hostname` of the worker process executing
            the task.