Skip to content

Commit

Permalink
fix doc operator range
Browse files Browse the repository at this point in the history
  • Loading branch information
rombernier committed Oct 17, 2023
1 parent 1a3bbb2 commit a527436
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _shared_content/automate/operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ This array shows the different types of comparison available with examples:
|>=|Greater than or equal to|{{ node.1['urgency']['current_value'] }}|{{ 80 }}|For number comparison, it is needed to transform the value as an "Integer" because it is interpreted as a String by default. For that the value is surrounded by curly brackets.|
|in|Includes in|{{ node.1['rule']['name'] }}|["my rule 1", "my second rule", "my third rule"]||
|not in|Not includes in|{{ node.1['rule']['name'] }}|["my rule 1", "my second rule", "my third rule"]||
|range|In the range of|{{ node.1['urgency']['current_value'] }}|[10, 100]|Edge values are included in the range|
|range|In the range of|{{ node.1['urgency']['current_value'] }}|[{{10}}, {{100}}]|Edge values are included in the range|

### Foreach

Expand Down

0 comments on commit a527436

Please sign in to comment.