From 9f8f6f8f6e44297fa602838d8c55fbf8f5bcf7ce Mon Sep 17 00:00:00 2001 From: Gabriel Kosmacher <73120774+kennykos@users.noreply.github.com> Date: Tue, 11 Jun 2024 11:36:50 -0500 Subject: [PATCH] Fix typo where `parallel_scan` is said instead of `parallel_reduce`. (#270) --- docs/workunits.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/workunits.rst b/docs/workunits.rst index bc5dfe13..984a4ceb 100644 --- a/docs/workunits.rst +++ b/docs/workunits.rst @@ -30,7 +30,7 @@ accept, as the first argument, unique id for one unit of work. @pk.workunit def work(wid, [keyword arguments]) -In case of ``parallel_scan``, the work unit function is required to +In case of ``parallel_reduce``, the work unit function is required to accept two arguments: (1) unique id for one unit of work, and (2) an accumulator.