1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-11-29 22:47:43 +02:00

chore: Alter whitespace for consistency

* Add newline after "I AM DONE" in exercises for consistency
* Remove trailing whitespace from exercises
This commit is contained in:
Benjamin Jones
2020-07-10 19:01:38 -07:00
committed by Benjamin Jones
parent 106dbbc341
commit bb5f404e35
10 changed files with 34 additions and 29 deletions

View File

@@ -47,7 +47,7 @@ mod tests {
fn create_international_package() {
let sender_country = String::from("Spain");
let recipient_country = String::from("Russia");
let package = Package::new(sender_country, recipient_country, 1200);
assert!(package.is_international());
@@ -59,9 +59,9 @@ mod tests {
let recipient_country = String::from("Spain");
let cents_per_kg = ???;
let package = Package::new(sender_country, recipient_country, 1500);
assert_eq!(package.get_fees(cents_per_kg), 4500);
}
}