Skip to content

Commit e9de22e

Browse files
committed
Fix docstring
1 parent 6c307f3 commit e9de22e

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

yt/data_objects/selection_objects/data_selection_objects.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -536,9 +536,9 @@ def piter(
536536
from each processor.
537537
- None: no reduction will be applied and the storage object will
538538
contain one result per chunk in the container.
539-
- concat: the storage object will contain a flattened list of
540-
each results.
541-
- cat_on_root: same as concat, but only the root processor will
539+
- cat: the storage object will contain a flattened list of
540+
each result.
541+
- cat_on_root: same as cat, but only the root processor will
542542
contain anything.
543543
- sum, min, max: the storage object will contain the result
544544
of applying the operation until getting a single value.

yt/utilities/parallel_tools/parallel_analysis_interface.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -517,9 +517,9 @@ def parallel_objects(
517517
from each processor.
518518
- None: no reduction will be applied and the storage object will
519519
contain one result per chunk in the container.
520-
- concat: the storage object will contain a flattened list of
521-
each results.
522-
- cat_on_root: same as concat, but only the root processor will
520+
- cat: the storage object will contain a flattened list of
521+
each result.
522+
- cat_on_root: same as cat, but only the root processor will
523523
contain anything.
524524
- sum, min, max: the storage object will contain the result
525525
of applying the operation until getting a single value.
@@ -1017,6 +1017,7 @@ def concat(
10171017
):
10181018
"""
10191019
Concatenate all the values of data and send them to the root.
1020+
This returns None on all other processors.
10201021
10211022
Notes:
10221023
------

0 commit comments

Comments
 (0)