Преглед на файлове

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

Ask Solem преди 9 години
родител
ревизия
cf5918543a
променени са 3 файла, в които са добавени 3 реда и са изтрити 2 реда
  1. 1 0
      CONTRIBUTORS.txt
  2. 1 1
      docs/configuration.rst
  3. 1 1
      docs/userguide/canvas.rst

+ 1 - 0
CONTRIBUTORS.txt

@@ -211,3 +211,4 @@ Komu Wairagu, 2016/04/03
 Joe Sanford, 2016/04/11
 Joe Sanford, 2016/04/11
 Takeshi Kanemoto, 2016/04/22
 Takeshi Kanemoto, 2016/04/22
 Arthur Vuillard, 2016/04/22
 Arthur Vuillard, 2016/04/22
+Colin McIntosh, 2016/04/26

+ 1 - 1
docs/configuration.rst

@@ -1581,7 +1581,7 @@ default is ``amqp``, which uses ``librabbitmq`` by default or falls back to
 ``couchdb``.
 ``couchdb``.
 It can also be a fully qualified path to your own transport implementation.
 It can also be a fully qualified path to your own transport implementation.
 
 
-More than broker URL, of the same transport, can also be specified.
+More than one broker URL, of the same transport, can also be specified.
 The broker URLs can be passed in as a single string that is semicolon delimited::
 The broker URLs can be passed in as a single string that is semicolon delimited::
 
 
     broker_url = 'transport://userid:password@hostname:port//;transport://userid:password@hostname:port//'
     broker_url = 'transport://userid:password@hostname:port//;transport://userid:password@hostname:port//'

+ 1 - 1
docs/userguide/canvas.rst

@@ -656,7 +656,7 @@ The :class:`~celery.group` function takes a list of signatures:
     (proj.tasks.add(2, 2), proj.tasks.add(4, 4))
     (proj.tasks.add(2, 2), proj.tasks.add(4, 4))
 
 
 If you **call** the group, the tasks will be applied
 If you **call** the group, the tasks will be applied
-one after one in the current process, and a :class:`~celery.result.GroupResult`
+one after another in the current process, and a :class:`~celery.result.GroupResult`
 instance is returned which can be used to keep track of the results,
 instance is returned which can be used to keep track of the results,
 or tell how many tasks are ready and so on:
 or tell how many tasks are ready and so on: