useless comment

This commit is contained in:
Mylloon 2023-02-08 22:29:21 +01:00
parent 0612b09ca0
commit 5c6e3e6941
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -13,7 +13,7 @@ struct IndexTemplate<'a> {
}
pub fn get_index() -> std::string::String {
let index = IndexTemplate { name: "world" }; // instantiate your struct
let index = IndexTemplate { name: "world" };
index.render().unwrap()
}