docs(option): improve further information

This commit is contained in:
Zerotask 2021-04-24 12:12:49 +02:00
parent 84461c20cb
commit 4a384cae4a
No known key found for this signature in database
GPG Key ID: 1C87F67E23FCB283
2 changed files with 3 additions and 1 deletions

View File

@ -16,3 +16,5 @@ Option types are very common in Rust code, as they have a number of uses:
- [Option Enum Format](https://doc.rust-lang.org/stable/book/ch10-01-syntax.html#in-enum-definitions)
- [Option Module Documentation](https://doc.rust-lang.org/std/option/)
- [Option Enum Documentation](https://doc.rust-lang.org/std/option/enum.Option.html)
- [if let](https://doc.rust-lang.org/rust-by-example/flow_control/if_let.html)
- [while let](https://doc.rust-lang.org/rust-by-example/flow_control/while_let.html)

View File

@ -3,7 +3,7 @@
// I AM NOT DONE
// you can modify anything EXCEPT for this function's sig
// you can modify anything EXCEPT for this function's signature
fn print_number(maybe_number: Option<u16>) {
println!("printing: {}", maybe_number.unwrap());
}