1
0
Fork 0
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:
mokou 2022-07-14 17:34:50 +02:00
commit b644558c19
5 changed files with 47 additions and 47 deletions

View file

@ -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:

View file

@ -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

View file

@ -1,4 +1,4 @@
// option2.rs
// options2.rs
// Make me compile! Execute `rustlings hint option2` for hints
// I AM NOT DONE

View file

@ -1,4 +1,4 @@
// option3.rs
// options3.rs
// Make me compile! Execute `rustlings hint option3` for hints
// I AM NOT DONE