fix: whitespaces

This commit is contained in:
DavidOnTop 2024-01-28 12:13:27 +01:00
parent b40a1f301b
commit 14079c99cd
No known key found for this signature in database
GPG key ID: FAB914DDC2F180EB
2 changed files with 9 additions and 9 deletions

View file

@ -1,10 +1,10 @@
{% if async %}
{%- if async -%}
#[tokio::main]
async fn main() {
println!("Hello, world!");
}
{% else %}
{%- else -%}
fn main() {
println!("Hello, world!");
}
{% endif %}
{%- endif -%}