Skip to content

Commit 8b1399c

Browse files
committed
Merge branch 'master' of github.com:celery/celery
2 parents 858e312 + e975a1c commit 8b1399c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/userguide/canvas.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -911,11 +911,11 @@ while calling ``.apply_async`` will create a dedicated
911911
task so that the individual tasks are applied in a worker
912912
instead::
913913

914-
>>> add.chunks(zip(range(100), range(100), 10)).apply_async()
914+
>>> add.chunks(zip(range(100), range(100)), 10).apply_async()
915915

916916
You can also convert chunks to a group::
917917

918-
>>> group = add.chunks(zip(range(100), range(100), 10)).group()
918+
>>> group = add.chunks(zip(range(100), range(100)), 10).group()
919919

920920
and with the group skew the countdown of each task by increments
921921
of one::

0 commit comments

Comments
 (0)