mirror of
https://github.com/notohh/rustlings.git
synced 2025-07-24 22:40:04 -04:00
fix: rename option to options
This commit is contained in:
parent
472d7944f9
commit
b644558c19
5 changed files with 47 additions and 47 deletions
exercises/options
|
@ -1,4 +1,4 @@
|
|||
# Option
|
||||
# Options
|
||||
|
||||
Type Option represents an optional value: every Option is either Some and contains a value, or None, and does not.
|
||||
Option types are very common in Rust code, as they have a number of uses:
|
|
@ -1,5 +1,5 @@
|
|||
// option1.rs
|
||||
// Make me compile! Execute `rustlings hint option1` for hints
|
||||
// options1.rs
|
||||
// Execute `rustlings hint options1` or use the `hint` watch subcommand for a hint.
|
||||
|
||||
// I AM NOT DONE
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
// option2.rs
|
||||
// options2.rs
|
||||
// Make me compile! Execute `rustlings hint option2` for hints
|
||||
|
||||
// I AM NOT DONE
|
|
@ -1,4 +1,4 @@
|
|||
// option3.rs
|
||||
// options3.rs
|
||||
// Make me compile! Execute `rustlings hint option3` for hints
|
||||
|
||||
// I AM NOT DONE
|
Loading…
Add table
Add a link
Reference in a new issue