Skip to content

Commit 065ad8c

Browse files
Merge pull request #294 from code0-tech/fix/definition-name
correct display message name for if else fn
2 parents 80d4748 + 717698f commit 065ad8c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • crates/taurus-core/src/runtime/functions

crates/taurus-core/src/runtime/functions/control.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ fn r#if(
208208
documentation(
209209
en_US = "Evaluates a boolean condition. If true, executes the Runnable. Otherwise executes the Else Runnable."
210210
),
211-
display_message(en_US = "If ${condition} is True do ${then_runnable} else ${else_runnable}"),
211+
display_message(en_US = "If ${condition} is True do ${runnable} else ${else_runnable}"),
212212
alias(en_US = "if_else;control;std;if;else"),
213213
display_icon = "tabler:arrow-ramp-right",
214214
linked_data_type_identifiers = ["BOOLEAN", "RUNNABLE"],

0 commit comments

Comments
 (0)