diff --git a/dsl-reference.md b/dsl-reference.md index a16b68dc..7b76cb2e 100644 --- a/dsl-reference.md +++ b/dsl-reference.md @@ -667,12 +667,10 @@ do: any: - with: type: com.fake-hospital.vitals.measurements.temperature - data: - temperature: ${ .temperature > 38 } + data: ${ .temperature > 38 } - with: type: com.fake-hospital.vitals.measurements.bpm - data: - temperature: ${ .bpm < 60 or .bpm > 100 } + data: ${ .bpm < 60 or .bpm > 100 } ``` #### Raise @@ -2145,4 +2143,4 @@ do: until: '${ ($context.messages | length) == 5 }' for: seconds: 10 -``` \ No newline at end of file +```