From 3144d3ae63963eae6bc8469a48dc0e586d77596d Mon Sep 17 00:00:00 2001 From: Étienne Barrié Date: Mon, 10 Aug 2020 10:24:21 -0400 Subject: chore: Run rustfmt on exercises --- exercises/structs/structs3.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'exercises/structs') diff --git a/exercises/structs/structs3.rs b/exercises/structs/structs3.rs index 883c803..36d46e9 100644 --- a/exercises/structs/structs3.rs +++ b/exercises/structs/structs3.rs @@ -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, + }; } } -- cgit v1.2.3