Skip to content

Commit 98c2e4d

Browse files
committed
remove semicolon
1 parent e659214 commit 98c2e4d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

crates/bevy_api_gen/templates/footer.tera

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ pub struct {{ "ScriptingPlugin" | prefix_cratename | convert_case(case="upper_ca
1313
name = "{{ item.ident | convert_case(case="snake") }}",
1414
)]
1515
impl {{item.import_path}} {
16-
{%- for function in item.functions -%}
17-
16+
{% for function in item.functions %}
1817
fn {{ function.ident }} (
1918
{%- for arg in function.args -%}
2019
{%- if arg.proxy_ty is matching("Mut.*")-%}
@@ -43,7 +42,7 @@ impl {{item.import_path}} {
4342
).into();
4443
output
4544
}
46-
{%- endfor -%};
45+
{% endfor %}
4746
}
4847
{% endfor %}
4948

0 commit comments

Comments
 (0)