Skip to content

Commit

Permalink
Update canvas.rst (celery#6392)
Browse files Browse the repository at this point in the history
* Update canvas.rst

Tiny fixes.

* Update docs/userguide/canvas.rst

Co-authored-by: Omer Katz <[email protected]>

Co-authored-by: Omer Katz <[email protected]>
  • Loading branch information
ZviBaratz and Omer Katz authored Oct 6, 2020
1 parent 9eac689 commit 66d2ea5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/userguide/canvas.rst
Original file line number Diff line number Diff line change
Expand Up @@ -959,11 +959,11 @@ Map & Starmap
-------------

:class:`~celery.map` and :class:`~celery.starmap` are built-in tasks
that calls the task for every element in a sequence.
that call the provided calling task for every element in a sequence.

They differ from group in that
They differ from :class:`~celery.group` in that:

- only one task message is sent
- only one task message is sent.

- the operation is sequential.

Expand Down Expand Up @@ -1013,7 +1013,7 @@ Chunks
------

Chunking lets you divide an iterable of work into pieces, so that if
you have one million objects, you can create 10 tasks with hundred
you have one million objects, you can create 10 tasks with a hundred
thousand objects each.

Some may worry that chunking your tasks results in a degradation
Expand Down

0 comments on commit 66d2ea5

Please sign in to comment.