Skip to content

Commit 9e8cae7

Browse files
committed
revise: clarify that workflows do not have a command section
1 parent a296559 commit 9e8cae7

1 file changed

Lines changed: 8 additions & 7 deletions

File tree

getting-started/quickstart.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,14 @@ or the cloud).
1919
### Workflows
2020

2121
**Workflows** string together tasks via their inputs and outputs into a larger
22-
computation graph that can be executed. Workflows are arranged similarly to tasks
23-
except that (a) they don't have a `requirements` section and (b) they make available
24-
more control flow facilities that aren't relevant within a task context. For example,
25-
the workflow below uses both _conditional execution_ (the `if` statement) and a
26-
_scatter-gather_ (the `scatter` keyword and `messages` output). Notably, workflows can
27-
also define inputs and outputs, and these generally serve as the global inputs and
28-
outputs for the execution of a workflow.
22+
computation graph that can be executed. Workflows are arranged similarly to
23+
tasks except that (a) they don't have a `command` or `requirements` section and
24+
(b) they make available more control flow facilities that aren't relevant within
25+
a task context. For example, the workflow below uses both _conditional
26+
execution_ (the `if` statement) and a _scatter-gather_ (the `scatter` keyword
27+
and `messages` output). Notably, workflows can also define inputs and outputs,
28+
and these generally serve as the global inputs and outputs for the execution of
29+
a workflow.
2930

3031
### Inputs and Outputs
3132

0 commit comments

Comments
 (0)