Skip to content

Commit 8387203

Browse files
azaitsevOmer Katz
authored andcommitted
Fixed wrong value in example of celery chain (#4444)
1 parent 9765151 commit 8387203

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
@@ -491,10 +491,10 @@ returns successfully:
491491
492492
>>> res = add.apply_async((2, 2), link=mul.s(16))
493493
>>> res.get()
494-
4
494+
64
495495
496496
The linked task will be applied with the result of its parent
497-
task as the first argument. In the above case where the result was 4,
497+
task as the first argument. In the above case where the result was 64,
498498
this will result in ``mul(4, 16)``.
499499

500500
The results will keep track of any subtasks called by the original task,

0 commit comments

Comments
 (0)