Skip to content

Commit 6f06276

Browse files
committed
fix example
1 parent 1f612bc commit 6f06276

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/pipelines/process/includes/parameter-data-types.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,8 @@ jobs:
9999
steps:
100100
- ${{ parameters.myStep }} # Use the step from the 'myStep' parameter
101101

102-
- ${{ each region in parameters.myStringlist}}:
102+
- job: stringList # Define a job named 'myStep'
103+
steps:
104+
- ${{ each region in parameters.myStringlist}}:
103105
- script: echo ${{region}}
104106
```

0 commit comments

Comments
 (0)