Skip to content

Commit 67111d2

Browse files
committed
docs: fix reversed tuple order in multiprocessing example docstring
The 'Worker layout' docstring described tasks as `(expr, label)` but the code builds and unpacks them as `(label, expr)`. Correct the doc to match.
1 parent 9bc07aa commit 67111d2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/multiprocessing_pickle_expr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
2727
Worker layout:
2828
29-
* Each worker receives a different ``(expr, label)`` task.
29+
* Each worker receives a different ``(label, expr)`` task.
3030
* Each worker materializes the shared dataset locally and runs its
3131
own expression against it.
3232
* The result and the worker's PID travel back to the driver, so the

0 commit comments

Comments
 (0)