fixed spacing

This commit is contained in:
Sanjay K 2020-04-02 08:40:59 -04:00
parent 135e5d47a7
commit 6deee7e3e9
1 changed files with 4 additions and 4 deletions

View File

@ -1,9 +1,9 @@
//option1.rs
//Make me compile! Execute `rustlings hint option1` for hints
// option1.rs
// Make me compile! Execute `rustlings hint option1` for hints
//I AM NOT DONE
// I AM NOT DONE
//you can modify anything EXCEPT for this function's sig
// you can modify anything EXCEPT for this function's sig
fn print_number(maybe_number: Option<u16>) {
println!("printing: {}", *maybe_number);
}