Skip to content

Commit

Permalink
Fixed swapped parentheses and square brackets in the break down of th…
Browse files Browse the repository at this point in the history
…e chord example.
  • Loading branch information
FreakTheMighty committed Aug 28, 2011
1 parent 9497342 commit d4bc2ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/userguide/tasksets.rst
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ as synchronization is a required step for many parallel algorithms.
Let's break the chord expression down::

>>> callback = tsum.subtask()
>>> header = [add.subtask((i, i)) for i in xrange(100])
>>> header = [add.subtask((i, i)) for i in xrange(100)]
>>> result = chord(header)(callback)
>>> result.get()
9900
Expand Down

0 comments on commit d4bc2ba

Please sign in to comment.