Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/ansys/fluent/core/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -817,8 +817,8 @@ def TaskObject(self) -> TaskContainer:
def ordered_children(self, recompute=True) -> list:
"""Get the ordered task list held by the workflow. Sorting is in terms
of the workflow order and only includes the top-level tasks, while other tasks
can be obtained by calling ordered_children() on a parent task. Given the
workflow:
can be obtained by calling ordered_children() on a parent task. Consider the
following workflow.

Workflow
├── A
Expand All @@ -827,7 +827,7 @@ def ordered_children(self, recompute=True) -> list:
│ └── D
└── E

the ordered children of the workflow are A, B, E, while B has ordered children
The ordered children of the workflow are A, B, E, while B has ordered children
C and D.
"""
if recompute:
Expand Down