Skip to content

Commit 855b691

Browse files
authored
Merge pull request #920 from yzhao244/yuri-dsl-doc-update
Fix `run` task documentation
2 parents 7654925 + fc0369f commit 855b691

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dsl-reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ The Serverless Workflow DSL defines a list of [tasks](#task) that **must be** su
233233
- [For](#for), used to iterate over a collection of items, and conditionally perform a task for each of them.
234234
- [Listen](#listen), used to listen for an [event](#event) or more.
235235
- [Raise](#raise), used to raise an [error](#error) and potentially fault the [workflow](#workflow).
236-
- [Run](#run), used to run a [container](#container), a [script](#script) or event a [shell](#shell) command.
236+
- [Run](#run), used to run a [container](#container-process), a [script](#script-process) , a [shell](#shell-process) command or even another [workflow](#workflow-process).
237237
- [Switch](#switch), used to dynamically select and execute one of multiple alternative paths based on specified conditions
238238
- [Set](#set), used to dynamically set or update the [workflow](#workflow)'s data during the its execution.
239239
- [Try](#try), used to attempt executing a specified [task](#task), and to handle any resulting [errors](#error) gracefully, allowing the [workflow](#workflow) to continue without interruption.

dsl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ The Serverless Workflow DSL defines several default [task](dsl-reference.md#task
107107
- [For](dsl-reference.md#for), used to iterate over a collection of items, and conditionally perform a task for each of them.
108108
- [Listen](dsl-reference.md#listen), used to listen for an [event](dsl-reference.md#event) or more.
109109
- [Raise](dsl-reference.md#raise), used to raise an [error](dsl-reference.md#error) and potentially fault the [workflow](dsl-reference.md#workflow).
110-
- [Run](dsl-reference.md#run), used to run a [container](dsl-reference.md#container), a [script](dsl-reference.md#script) or event a [shell](dsl-reference.md#shell) command.
110+
- [Run](dsl-reference.md#run), used to run a [container](dsl-reference.md#container-process), a [script](dsl-reference.md#script-process), a [shell](dsl-reference.md#shell-process) command or even another [workflow](dsl-reference.md#workflow-process).
111111
- [Switch](dsl-reference.md#switch), used to dynamically select and execute one of multiple alternative paths based on specified conditions
112112
- [Set](dsl-reference.md#set), used to dynamically set or update the [workflow](dsl-reference.md#workflow)'s data during the its execution.
113113
- [Try](dsl-reference.md#try), used to attempt executing a specified [task](dsl-reference.md#task), and to handle any resulting [errors](dsl-reference.md#error) gracefully, allowing the [workflow](dsl-reference.md#workflow) to continue without interruption.

0 commit comments

Comments
 (0)