chore: Run rustfmt on exercises

This commit is contained in:
Étienne Barrié
2020-08-10 10:24:21 -04:00
parent c4853ee6bb
commit 3144d3ae63
12 changed files with 30 additions and 25 deletions

View File

@@ -17,7 +17,11 @@ impl Package {
if weight_in_grams <= 0 {
// Something goes here...
} else {
return Package {sender_country, recipient_country, weight_in_grams};
return Package {
sender_country,
recipient_country,
weight_in_grams,
};
}
}