Skip to content
This repository was archived by the owner on Jan 21, 2023. It is now read-only.

Commit 528b92f

Browse files
committed
Update src/structurizr/view/dynamic_view.py
1 parent d6bb3ff commit 528b92f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/structurizr/view/dynamic_view.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -162,11 +162,11 @@ def parallel_sequence(self, continue_numbering: bool):
162162
Start a context-managed parallel sequence.
163163
164164
Args:
165-
continue_numbering: if `True` then when the with block completes, the main
166-
sequence number will continue from after the last
167-
number from the parallel sequence. If `False` then it
168-
will reset back to the start (usually so you can start
169-
a new parallel sequence).
165+
continue_numbering: Whether to continue the main sequence number
166+
from where the parallel sequence ended when its context is
167+
ended (`True`) or to reset the main sequence to where it began
168+
(`False`). The latter is usually done so that you can start a
169+
new parallel sequence.
170170
171171
Parallel sequences allow for multiple parallel flows to share the same
172172
sequence numbers, so e.g.

0 commit comments

Comments
 (0)