From b3e184c165651f69959b8b237e940f2db6a11332 Mon Sep 17 00:00:00 2001 From: Francisco Javier Tirado Sarti Date: Tue, 14 Jan 2025 14:08:01 +0100 Subject: [PATCH] Aling Listen to specification with example The specification example was not aligned with the example Signed-off-by: Francisco Javier Tirado Sarti --- dsl-reference.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/dsl-reference.md b/dsl-reference.md index a16b68dc..e898e316 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