diff options
| author | Sanjay K <sanjaykdragon@gmail.com> | 2020-04-02 08:40:59 -0400 |
|---|---|---|
| committer | Sanjay K <sanjaykdragon@gmail.com> | 2020-04-02 08:40:59 -0400 |
| commit | 6deee7e3e92ac717e356b99180acaaf03a54b750 (patch) | |
| tree | 1cc7b971841eb1017d5b1e9a2f4a11f8d1b3865e /exercises/option | |
| parent | 135e5d47a7c395aece6f6022117fb20c82f2d3d4 (diff) | |
fixed spacing
Diffstat (limited to 'exercises/option')
| -rw-r--r-- | exercises/option/option1.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/exercises/option/option1.rs b/exercises/option/option1.rs index eb32ccb..e81620d 100644 --- a/exercises/option/option1.rs +++ b/exercises/option/option1.rs @@ -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); } |
