Skip to content

Commit 8a2e3cb

Browse files
authored
Align text with code
1 parent 39288d1 commit 8a2e3cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/pipelines/process/conditions.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -250,9 +250,9 @@ steps:
250250
condition: and(succeeded(), ${{ eq(parameters.doThing, true) }})
251251
```
252252

253-
The `condition` in the preceding pipeline combines two functions: `succeeded()` and `eq('${{ parameters.doThing }}', true)`. The `succeeded()` function checks if the previous step succeeded. The `succeeded()` function returns `true` because there was no previous step.
253+
The `condition` in the preceding pipeline combines two functions: `succeeded()` and `${{ eq(parameters.doThing, true) }}`. The `succeeded()` function checks if the previous step succeeded. The `succeeded()` function returns `true` because there was no previous step.
254254

255-
The `eq('${{ parameters.doThing }}', true)` function checks whether the `doThing` parameter is equal to `true`. Since the default value for `doThing` is `true`, the condition returns `true` by default unless the pipeline sets a different value.
255+
The `${{ eq(parameters.doThing, true) }}` function checks whether the `doThing` parameter is equal to `true`. Since the default value for `doThing` is `true`, the condition returns `true` by default unless the pipeline sets a different value.
256256

257257
### Template parameters in conditions
258258

0 commit comments

Comments
 (0)