Skip to content

Commit 4e9e4bc

Browse files
[autofix.ci] apply automated fixes
1 parent 70be138 commit 4e9e4bc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

internal/compiler/passes/resolving.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -835,7 +835,7 @@ impl Expression {
835835
Expression::FunctionCall {
836836
function: BuiltinFunction::ParseMarkdown.into(),
837837
arguments: vec![
838-
expr.unwrap_or_else(|| Expression::default_value_for_type(&Type::String))
838+
expr.unwrap_or_else(|| Expression::default_value_for_type(&Type::String)),
839839
],
840840
source_location: Some(node.to_source_location()),
841841
}

x.slint

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ export component TestCase inherits Window {
77
VerticalLayout {
88
StyledText {
99
text: @markdown("Hello {}", "*Everyone*");
10-
10+
1111
}
12-
12+
1313
}
1414
}

0 commit comments

Comments
 (0)