Skip to content

Commit eafa0bc

Browse files
committed
Merge branch 'master' of github.com:celery/celery
2 parents 34082df + 14c602c commit eafa0bc

File tree

11 files changed

+15
-15
lines changed

11 files changed

+15
-15
lines changed

docs/configuration.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ AMQP backend settings
335335
.. note::
336336

337337
The AMQP backend requires RabbitMQ 1.1.0 or higher to automatically
338-
expire results. If you are running an older version of RabbitmQ
338+
expire results. If you are running an older version of RabbitMQ
339339
you should disable result expiration like this:
340340

341341
CELERY_TASK_RESULT_EXPIRES = None
@@ -455,7 +455,7 @@ which is the same as::
455455

456456
CELERY_RESULT_BACKEND = 'redis://'
457457

458-
The fields of the URL is defined as folows:
458+
The fields of the URL are defined as follows:
459459

460460
- *host*
461461

@@ -657,7 +657,7 @@ which is the same as::
657657

658658
CELERY_RESULT_BACKEND = "riak://"
659659

660-
The fields of the URL is defined as folows:
660+
The fields of the URL are defined as follows:
661661

662662
- *host*
663663

docs/contributing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,7 @@ Edit the file using your favorite editor:
639639
640640
$ vim celery.worker.awesome.rst
641641
642-
# change every occurance of ``celery.schedules`` to
642+
# change every occurrence of ``celery.schedules`` to
643643
# ``celery.worker.awesome``
644644
645645

docs/getting-started/introduction.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ Quickjump
281281
- :ref:`see a list of running workers <monitoring-control>`
282282
- :ref:`purge all messages <monitoring-control>`
283283
- :ref:`inspect what the workers are doing <monitoring-control>`
284-
- :ref:`see what tasks a worker has registerd <monitoring-control>`
284+
- :ref:`see what tasks a worker has registered <monitoring-control>`
285285
- :ref:`migrate tasks to a new broker <monitoring-control>`
286286
- :ref:`see a list of event message types <event-reference>`
287287
- :ref:`contribute to Celery <contributing>`

docs/getting-started/next-steps.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ When the worker starts you should see a banner and some messages::
9292

9393
[2012-06-08 16:23:51,078: WARNING/MainProcess] celery@halcyon.local has started.
9494

95-
-- The *broker* is the URL you specifed in the broker argument in our ``celery``
95+
-- The *broker* is the URL you specified in the broker argument in our ``celery``
9696
module, you can also specify a different broker on the command-line by using
9797
the :option:`-b` option.
9898

docs/glossary.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Glossary
5151
Idempotence is a mathematical property that describes a function that
5252
can be called multiple times without changing the result.
5353
Practically it means that a function can be repeated many times without
54-
unintented effects, but not necessarily side-effect free in the pure
54+
unintended effects, but not necessarily side-effect free in the pure
5555
sense (compare to :term:`nullipotent`).
5656

5757
nullipotent

docs/userguide/application.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ Example 2: Using a configuration module
182182

183183
.. tip::
184184

185-
Using the name of a module is recomended
185+
Using the name of a module is recommended
186186
as this means that the module doesn't need to be serialized
187187
when the prefork pool is used. If you're
188188
experiencing configuration pickle errors then please try using

docs/userguide/calling.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The API defines a standard set of execution options, as well as three methods:
4747
executes 10 seconds from now.
4848

4949
- ``T.apply_async(eta=now + timedelta(seconds=10))``
50-
executes 10 seconds from now, specifed using ``eta``
50+
executes 10 seconds from now, specified using ``eta``
5151

5252
- ``T.apply_async(countdown=60, expires=120)``
5353
executes in one minute from now, but expires after 2 minutes.
@@ -447,7 +447,7 @@ Though this particular example is much better expressed as a group:
447447
>>> from celery import group
448448
449449
>>> numbers = [(2, 2), (4, 4), (8, 8), (16, 16)]
450-
>>> res = group(add.s(n) for i in numbers).apply_async()
450+
>>> res = group(add.s(n) for n in numbers).apply_async()
451451
452452
>>> res.get()
453453
[4, 8, 16, 32]

docs/userguide/canvas.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ creates partials:
109109
- Any arguments added will be prepended to the args in the signature::
110110

111111
>>> partial = add.s(2) # incomplete signature
112-
>>> partial.delay(4) # 2 + 4
112+
>>> partial.delay(4) # 4 + 2
113113
>>> partial.apply_async((4, )) # same
114114

115115
- Any keyword arguments added will be merged with the kwargs in the signature,
@@ -125,7 +125,7 @@ creates partials:
125125
>>> s = add.signature((2, 2), countdown=10)
126126
>>> s.apply_async(countdown=1) # countdown is now 1
127127

128-
You can also clone signatures to create derivates:
128+
You can also clone signatures to create derivatives:
129129

130130
>>> s = add.s(2)
131131
proj.tasks.add(2)

docs/userguide/extending.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -768,7 +768,7 @@ will take some time so other transports still use a threading-based solution.
768768

769769
Add callback to be called when ``fd`` is readable.
770770

771-
The callback will stay registered until explictly removed using
771+
The callback will stay registered until explicitly removed using
772772
:meth:`hub.remove(fd) <hub.remove>`, or the fd is automatically discarded
773773
because it's no longer valid.
774774

docs/userguide/routing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ using the ``basic.publish`` command::
402402

403403
Now that the message is sent you can retrieve it again. You can use the
404404
``basic.get``` command here, which polls for new messages on the queue
405-
(which is alright for maintainence tasks, for services you'd want to use
405+
(which is alright for maintenance tasks, for services you'd want to use
406406
``basic.consume`` instead)
407407

408408
Pop a message off the queue::

docs/userguide/tasks.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ many messages in advance and even if the worker is killed -- caused by power fai
1919
or otherwise -- the message will be redelivered to another worker.
2020

2121
Ideally task functions should be :term:`idempotent`, which means that
22-
the function will not cause unintented effects even if called
22+
the function will not cause unintended effects even if called
2323
multiple times with the same arguments.
2424
Since the worker cannot detect if your tasks are idempotent, the default
2525
behavior is to acknowledge the message in advance, before it's executed,

0 commit comments

Comments
 (0)